which of the CSS do i change if i want all hyperlinks to be of a certain color ?
Of course! you can tell me detail about the position that you want to change the color, I will help you resolve it with few line code.
Regards,
well in the site the "author" in posted by is in green. while links in the body of the post is in black (roll over it becomes green).
I like to make it in reverse whereby it is initially a color (i am still deciding) and roll over it becomes black and if possible to make it italicize,
however, the links in the sidebar (left & right), will remain the same
oh additionally i would like to change the body text from the current "grayish" to black
Hi,
Apologies for the delay in replying to you, you can add the following code to the style.css file:
/**** Author & Categories **/
.entry-meta a {
color: #...;
}
.entry-meta a:hover {
color: #...;
}
/**** Body link **/
.hentry .entry-content a {
color: #...;
}
.hentry .entry-content a:hover {
color: #...;
}
/**** Color left Sidebar **/
#main-sidebar a {
color: #...;
}
#main-sidebar a:hover {
color: #...;
}
Hope this helps!
Please login or Register to submit your answer