• I’m trying to get this all situated, and luckily my site is very minimal. I only have two issues and I’ll be good to go once those are fixed.

    I came here and saw a few CSS codes to use to do what I want done, but they’re not working. I also searched for answers but nothing is working. I got rid of the menu and header image because they weren’t what I wanted and I just added those elements in the body of the page, but now the links are not looking like the menu links did. So I just now got them to be all white, but they still have underlines on them and the hover color is wrong. Here’s my code.

    `a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
    }

    a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
    }

    a:hover {
    color: white;
    background-color: transparent;
    text-decoration: none;
    }

    a:active {
    color: white;
    background-color: transparent;
    text-decoration: none;
    }`

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Topher

    (@topher1kenobe)

    I looked at your site CSS. It looks like there’s a way to do it in your settings, maybe the customizer? Alternatively, you could be more specific about your a tags, like this:

    .singular #layout article .entry-content a:not([class]) {
    color: white;
    background-color: transparent;
    text-decoration: none;
    }
    Thread Starter aneurysmradio

    (@aneurysmradio)

    Okay, so that worked on getting rid of the underline, and it looks great, but when I hover over a link it still disappears. What can I add to that code to make it stay white?

    I’ve gone through every setting in the Customizer to figure this out and that option isn’t available. I can edit all kinds of colors, but not the links. The only option for the links doesn’t seem to work.

    Thanks for your help so far!

    Thread Starter aneurysmradio

    (@aneurysmradio)

    I found it, thanks again!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Changing Link Colors/Underline’ is closed to new replies.