Viewing 8 replies - 1 through 8 (of 8 total)
  • Your theme appears to have an option to change the hover color on links, but as I don’t have access to your theme, I can’t be certain. You could change the hover color separately in your child theme’s stylesheet:

    footer a:hover {
    	color: #fff;
    }
    Thread Starter LEVI44

    (@levi44)

    Hi thanks for replying, there is no hover option in the qode settings and the css won’t work. I am not sure why!

    You’ve got a syntax error in your custom CSS plugin. You’ll need to delete this stray code on line 28:

    footer div {

    Second, I gave the wrong code. It should be:

    .footer_top a:hover {
    	color: #fff;
    }
    Thread Starter LEVI44

    (@levi44)

    correct code in and it doesn’t work still….

    whatever you have in your custom stlyes, is broken; styles are inserted within other styles, there are open styles, etc.

    this causes any CSS added at the end of the custom styles to not be applied.

    please carefully check the content of the custom styles and repair any broken section;

    as far as I can see (using a browser inspection tool) the corrected custom styles should look like:

    .facebookmenu {
        padding: 20px 1.1em 10px; }
    .right {float:right !important;}
    .right a { padding: 20px 1.1em 15px !important; }
    
    .twittermenu {
        padding: 20px 1.1em 10px; }
    .right {float:right !important;}
    .right a { padding: 20px 1.1em 15px !important; }
    
    .linkedinmenu {
        padding: 20px 1.1em 10px; }
    .right {float:right !important;}
    .right a { padding: 20px 1.1em 15px !important; }
    
    .footer_top {
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        padding: 55px 50px 45px;
    }
    
    .content-box-blue {
        margin: 0 0 25px; overflow: hidden; padding: 20px; }
    
    .content-box-blue { background-color: #d8ecf7; border: 1px solid #afcde3; }
    
    footer .footer_top a:hover {
    	color: #ddd;
    }

    this should also fix the hover problem in the footer widgets.

    for any further issues with your theme, please contact the developer for help;
    https://codex.www.ads-software.com/Forum_Welcome#Commercial_Products

    Thread Starter LEVI44

    (@levi44)

    Hi none of that css is actually working, for some reason my css has no effect on anything.

    I see your custom CSS is empty now.

    you can also add the suggested CSS to style.css of the child theme:

    footer .footer_top a:hover {
    	color: #fff;
    }

    you will also need to clear the browser cache to make sure to get to see any changes…

    Thread Starter LEVI44

    (@levi44)

    WORKED!! in the child theme section and not in the custom css!
    thank you, i could hug you ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘hover on links makes disappear’ is closed to new replies.