Okay
  Public Ticket #2198037
Inverted Portfolio Hover
Closed

Comments

  • ewallztheme started the conversation

    Hi, Im using portfolio scale with isotope + fitrows arrangement as per link provided and screenshot attached. I've played around with the elementor setting but could not get the result I wanted.

    1. I need the portfolio images all overlayed by default, when hovered overlay (& meta) disappear and show the actual image. Its like current hover is ON by default but it wont reveal real image when hover..like opposite current hover effects.
    2. As you can see, there's also a tiny white line in the middle, how to remove this?
    3. How to change the grid size into rectangular instead of square? current grid layout is 1:1. I want to make it vertical rectangle 1:2 w:h

    thats all for now. thanks

  •  675
    Neuron replied

    Hi,

    1) That feature is not enabled by default, so you can simply add the following style in Appearance > Customize > Additional CSS to achieve it.

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__header .o-neuron-hover-holder__header__overlay,
    .o-neuron-hover-holder:hover .o-neuron-hover-holder__body-meta {
        opacity: 0 !important;
    }

    2) I'm not sure exactly where is that coming, I may need an URL to check what's going on.

    3) Well the ratio of the boxes will depend on the image size, you can add custom sizes to the thumbnail section on the posts element, from there you can specify the image width & height. https://prnt.sc/ppk1nz

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    Hi,

    1. This is great. Worked nicely.

    2. somehow disappear when cleared my browser cache.

    3. Using the thumbnail resizer, set the thumb to Neuron Image Size Tall 500x700 then all images displayed as needed. But when I set to Custom size and put dimension to 500x900, then it all images revert back to original default. Do I need to rebuild thumbnails? or how can I change the preset Neuron Image Size Tall into different dimension, like 500x900?

  •  675
    Neuron replied

    Hi,

    Good to know, feel free to ask for anything you need.

    Well, the thumbnails are generated only when you upload an image, so the image size that you have specified is created after the images are uploaded, you need to regenerate the thumbnails to make them work alright.

    - https://wordpress.org/plugins/regenerate-thumbnails/

    One thing that you need to make sure is that your image is larger than the resolution you're trying to achieve, because it will not be able to crop what is larger than it's actual size.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    How to make the portfolio thumbnail image maintain the scale effect? after using the custom css, the image scale effect is gone.

  •  675
    Neuron replied

    Hey,

    Please replace the old CSS with the one below.

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__body-meta {
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition-duration: 0.3s !important;
    }

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    this is for the title & desc only. what i mean is the hover effect for the image.

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__body-meta {
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition-duration: 0.3s !important;
    }
  •  675
    Neuron replied

    Hi,

    Actually, I've send you the translate effect, that's the problem. It requires lot of extra work to achieve something like that, it's a lot easier with jQuery. So, please install the following plugin.

    https://wordpress.org/plugins/insert-headers-and-footers/

    The following jQuery:

    <script>
    jQuery(function($) {
      $('.o-neuron-hover-holder')
        .mouseenter(function() {
          $(this).removeClass('o-neuron-hover-holder--active');
        })
        .mouseleave(function() {
          $(this).addClass('o-neuron-hover-holder--active');
        });
    });
    </script>

    And the following CSS:

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__header .o-neuron-hover-holder__header__overlay,
    .o-neuron-hover-holder:hover .o-neuron-hover-holder__body-meta {
        opacity: 0 !important;
    }

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    this worked great! 

    do you know which css selector i can use to override the scale transition speed? I want to make the image scale in/out slower .

  •   ewallztheme replied privately
  •  675
    Neuron replied

    Hi,

    Good to know that you managed to solve the issue for the selected pages.

    As for the transition delay, you can add easily the following style.

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__header .o-neuron-hover-holder__header__overlay {
        transition-delay: 1s !important;
    }

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    please check this private ticket with web login for other issue

    Private Ticket #2203902

  • ewallztheme replied

    its not working. please check my private ticket with web login

    .o-neuron-hover-holder:hover .o-neuron-hover-holder__header .o-neuron-hover-holder__header__overlay {
        transition-delay: 1s !important;
    }
  •   Neuron replied privately
  • ewallztheme replied

    please paste the correct code here so i can copy it. thanks. as im not good in writing codes..

  •  675
    Neuron replied

    Hi,

    That's the code that I have already pasted in Appearance > Customize > Additional CSS, but here it is again.

    .o-neuron-hover .o-neuron-hover-holder .o-neuron-hover-holder__header__media img, 
    .l-posts-wrapper .o-neuron-hover-holder__header__overlay {
        transition-delay: 0.5s !important;
    } 

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    Hi, i think there's misunderstanding. what i mean is that the image scale/zoom effect scale in/ou slowly like this example http://paul-themes.com/wp/go-arch/go-arch-dark/projects-list/

    when hover, the images scale in slowly.

  •  675
    Neuron replied

    Hi,

    Simply the transition is different on the image, so add this to the image only.

    .o-neuron-hover .o-neuron-hover-holder .o-neuron-hover-holder__header__media img {
        -webkit-transition: all 8s linear !important;;
        -o-transition: all 8s linear !important;;
        transition: all 8s linear !important;;
    }

    And for content you can leave 0.5s.

    .l-posts-wrapper .o-neuron-hover-holder__header__overlay {
        transition-delay: 0.5s !important;
    } 

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • ewallztheme replied

    This worked great! Thank you

  •  675
    Neuron replied

    Good to know, let me know if I can help you on anything elsesmile.png

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.