Since I have a dark background on my blog, I want to change the link color to something other than black but only in my top links for the pages, not throughout the site.
The blog I need help with is sportyoursupport.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Since I have a dark background on my blog, I want to change the link color to something other than black but only in my top links for the pages, not throughout the site.
The blog I need help with is sportyoursupport.wordpress.com.
What site are you talking about? The site linked to your username has a light background: http://sportyoursupport.wordpress.com/ .
That's the site but there's a background of the city scape at night so most of the background is dark blue with black links.
You can change the font color in the top navigation with CSS like this:
#access a {
color: #261A11;
}
Just adjust the color to something else.
http://www.w3.org/TR/css3-color/#svg-color
Perfect! That worked. Thanks! Do you have a code to change the hover color?
Add this and edit.
#access li:hover > a, #access a:focus {
color: #373737;
}
This topic has been closed to new replies.