• Resolved doug.maynard

    (@dougmaynard)


    Hi –

    For some reason, on our site, all links look the same color-wise across all of our pages, except that in a bulleted list, they only change color when hovering over them. I haven’t had any luck in finding the style that controls this so I can adjust things. Can anyone help me locate it?

    Thanks
    ~Doug

Viewing 4 replies - 1 through 4 (of 4 total)
  • WPyogi

    (@wpyogi)

    Can you post a link to your site?

    Thread Starter doug.maynard

    (@dougmaynard)

    Sorry, I should’ve done that. It’s

    http://gohwp.org

    And you can see what I’m talking about specifically on this page:

    http://gohwp.org/online-networks/

    WPyogi

    (@wpyogi)

    This is the CSS styling those links differently:

    #content ul a, #content ol a {
        color: #777777;
    }

    You should be able to copy that to your child theme (yay for that) and change the color to whatever you like.

    Thread Starter doug.maynard

    (@dougmaynard)

    Thanks WPyogi – exactly what I needed. In case anyone else is curious, this is the CSS rule that does the same thing, but for a:hover.

    #content ul a:hover, #content ol a:hover {
    	text-decoration: none;
    	color: #05A9C5;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Link color in unordered (bulleted) list’ is closed to new replies.