• Hi,

    Is there a way to disable the highlight that occurs when you hover your mouse over an image?

    I’m starting out creating my own site using www.ads-software.com and the header image I have flashes when I hover the mouse over it.

    The blog I need help with is gilesjmblackley.com.

    Kind regards,

    Giles

    • This topic was modified 7 years, 11 months ago by seligb.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Is there in your style.css file of your template a CSS code lookslike header-image hover? Or something like that. If so, you have to try to delete that one and have a look if it has been changed.

    The theme is using this CSS to set the hover opacity:

    .header-image a:hover img {
        opacity: 0.85;
    }

    You can use this custom CSS to override it:

    .header-image a:hover img {
        opacity: 1;
    }

    To add CSS: If you are using WordPress 4.7, use the “Additional CSS” option in the Customizer. If your theme has a custom CSS option, use that to add the CSS. If not, install a plugin like https://www.ads-software.com/plugins/simple-css/ or https://www.ads-software.com/plugins/custom-css-js/. Or, if you have Jetpack installed, enable its Custom CSS module.

    Thread Starter seligb

    (@seligb)

    Thanks so much guys. Used the simple CSS plugin. Worked like a charm. Is it possible to do the same with a post title, for example, Hello World on my site gilesjmblackley.com ?
    It highlights when you hover the mouse over the text.

    Thanks again,

    Giles

    /* override article title hover color */
    .entry-title a:hover {
        color: #000;
    }

    If you’re wanting to make additional changes to your site you should become familiar with utilities like Firefox or Chrome Developer Tools. They let you see the site structure and applied CSS, and make test modifications in “real time” to see the effects.
    https://developer.mozilla.org/en-US/docs/Tools
    https://developer.chrome.com/devtools

    Here’s a reference on CSS:
    https://premium.wpmudev.org/blog/css-mega-guide/

    I’m not suggesting that you can’t, or shouldn’t, ask for help here if you need it; that’s what the forums are for. The volunteers here will appreciate it if you have at least a basic understanding of what you’re working with before you post.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable header image highlight’ is closed to new replies.