Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #645602

    Hey guys!

    Can you help me remove this gap that appears on this page? This is something I also want to do on a couple other pages as well.

    Website: neverdietour.com

    Current:
    http://s33.postimg.org/tdtvb0c9b/Screen_Shot_2016_06_09_at_11_53_20_AM.png

    What I want it to do:
    http://s33.postimg.org/klnh0xkpb/Screen_Shot_2016_06_09_at_11_53_31_AM.png

    And one last thing!
    Is there a way to make the images black and white, but then color on the hover? And vice versa.

    Thanks!
    Chris

    #645643

    Hey ccyran,

    Thanks for getting in touch with us!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0px !important;
    }
    

    Yes it might be possible with a bit of CSS code to have the images black and white then turn color on hover. But exactly which images are you referring to?

    Best regards,
    Jordan

    #645652

    Hey Jordan,

    That worked! Thanks!!!

    For the black and white effect, I’m referring to the three images on the sounds page.

    Thanks again!

    #645673

    Hi,

    Try the following:

    .page-id-3278 .av-hover-grow img {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
    }
    
    .page-id-3278 .av-hover-grow:hover img {
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
    }

    Only works on the sounds page as the page id is added to the code.

    Best regards,
    Jordan

    #645685

    Hey Jordan,

    Thanks!

    Last two questions…

    1. How do I find the page id of a page?
    2. Would the css you gave me be reversed to make it go from color to black and white?

    Thank you,
    Chris

    #645719

    Hi,

    You can follow the instructions here to find your post or page ID if you need it – https://www.competethemes.com/blog/find-page-id/

    Also to do the reverse, just change 0% to 100% and 100% to 0% in the code.

    Let me know if you need further assistance.

    Best regards,
    Jordan

    #645755

    Got it,

    Thanks man!

    #645809

    Hi,

    No problem, glad I was able to help :)

    Feel free to reach out to us again on the forum if you need anything else.

    Best regards,
    Jordan

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.