Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #293075

    http://kriesi.at/themes/enfold/portfolio/

    Portfolio Columns

    How do I:
    1. Remove the circle arrow hover over?
    2. Have the pictures appear gray scale until they are hovered over, where they would then be color?

    Thank you for your help!!

    #293087

    Hey Micheal0424!

    Please add following code Quick Css

    .image-overlay { display: none !important; }
    .js_active .grid-image {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    }
    .js_active .grid-image:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Regards,
    Yigit

    #318789

    Add this under WordPress Admin > Theme Options > General Styling > Quick CSS:

    /* REMOVE ROTATING CIRCLE ON HOVER */
    .image-overlay .image-overlay-inside:before{
    display: none;
    }

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove circle arrow hover over & make gray scale until hover over ?’ is closed to new replies.