dustyhawk
asked 10 years ago

which of the CSS do i change if i want all hyperlinks to be of a certain color ?

2 Answers
DominicStaff
answered 10 years ago

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,

dustyhawk
replied 10 years ago

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

dustyhawk
replied 10 years ago

oh additionally i would like to change the body text from the current "grayish" to black

DominicStaff
answered 10 years ago

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!

Powered by DW Question & Answer Pro