Okay
  Public Ticket #2199401
Hyperlink CSS
Closed

Comments

  • David Perezcassar started the conversation

    Hello- 
    I've attempted to change the Hyperlink CSS color in my Style.CSS but some line of code seems to be competing/over-riding it. Curious where I can find and remove or amend this code so that all my links, (not just some) are the correct color.

    I saw a previous post in which you told a user to edit as such

    .wrapper header nav ul li a { color: YOUR_COLOR !important; }

    BUT I have no idea where .wrapper header code belongs or where it exists to edit. 

    Thank you for your time,
    David

  •  675
    Neuron replied

    Hi David,

    The following style was for header links not for all hyperlinks, you can add the following style in Theme Options > General > Custom CSS.

    body a:not(button) {
        color: purple !important;
    } body a:not(button):hover {
        color: blue !important;
    }

    The first color is for the static state and the second one is for the hover state.

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • David Perezcassar replied

    Hello- Appreciate the very fast response. 

    Unfortunately the CSS addition you provided me isn't working as I'd like it to. Oddly what I've found is that links that go to .com or .org are the same color as body text, but links that go to .nyc, .info, .art, or .is all reflect the CSS color change.

    You can see the page here & see how the links are reacting

    https://litebox.info/2019/07/15/resources/


  •  675
    Neuron replied

    Hi David,

    You're welcome anytime, feel free to ask for anything you need.

    .wrapper a {
        color: purple !important;
    }
    .wrapper a {
        color: blue !important;
    }

    Maybe try and see if this works? Are you adding it on the correct place.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.