Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #586056

    The CSS code that removes the underline hyperlinks and replace with a hover colour should be as below (from another thread). Yet is doesn’t work for me if I put it into the quick-css.
    Any suggestions?

    a {
    color: blue; /* non-hover color */
    }
    a:visited {
    color: yellow; /* visited link color */
    }
    a:hover {
    text-decoration: none;
    color: red; /* hover color */
    }

    #586063

    Hi nigelpengelly!

    Please try adding !important rule as following

    a:hover {
    text-decoration: none !important;
    color: red !important; /* hover color */
    }

    If that does not work as well, please create a temporary admin login and post it here privately

    Regards,
    Yigit

    #586067

    Yigit,

    Hmm, still not working.

    My login is below.

    Nigel.

    #586857

    Hi Nigel,

    Thanks for the details but we will need a URL as well to be able to log in, please post that as well.

    Regards,
    Rikard

    #587014

    Sorry, here it is…

    #587057

    Hey!

    Code works as expected on my end, please see screenshot in private content field below.
    To remove underline from links, i added following code to bottom of Quick CSS field

    #top .av_inherit_color a {
        text-decoration: none;
    }

    If that is not what you wanted, please remove the code and post a screenshot showing the changes you would like to make.

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.