• Hi. All images on my site have a darkening effect when hovering over it. I want to remove this effect and leave the photos in original mode, without opacity.

    (I’ve sent this question to the theme forum over 1 year ago and I haven’t received any responses. I’ve pasted several css codes I saw on the forums, without success. Please, someone help me. Thank you in advance.)

    • This topic was modified 3 years, 3 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • a img { opacity: 1 !important; }

    actually it’s the opposite. Your images have opacity .85 and when hovering, they go to 1.

    a img {
        opacity: .85;
        ...
    
    a:hover img, a:focus img {
        opacity: 1;
    }
    Thread Starter fernandograca

    (@fernandograca)

    It worked like a charm. Thanks, sir. I just suggest writing “1.0” instead of “1”.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove darkening effect over the images?’ is closed to new replies.