• Resolved agnesmm

    (@agnesmm)


    Hello,

    I got myself a theme, where featured images turn black and white when hovering over them with a cursor. I need to disable this function.

    What I found on Google and tried, was removing from application.css the lines of code that I paste below. It did not work… Do you know if this can be fixed otherwise?

    img:hover.featured
    {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    }

    Many thanks,
    Agnes M

    • This topic was modified 8 years, 3 months ago by agnesmm.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter agnesmm

    (@agnesmm)

    Hi again,

    I managed to find a solution. I have pasted the following code to the CSS editor and it worked.
    Why removing the code from application.css did not work – I have no idea.
    Maybe it will be of some use to someone for the future.

    img:hover.featured
    {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
    }

    Br
    Agnes M

Viewing 1 replies (of 1 total)

The topic ‘[Noteworthy] Grayscale hover effect’ is closed to new replies.