Hi,
I use the Bulletproof theme, blue color set. Where should I edit in order to change the color of the links, that are inserted in the entries' body ? Please tell me the css file and at which line the change should be made; I have no any knowledge of the CSS stuff.
Bulletproof theme, changing the color of the hyperlinks
Bulletproof theme, changing the color of the hyperlinks
Ivan Cenov
OKTO-7 Co., Botevgrad
Bulgaria
OKTO-7 Co., Botevgrad
Bulgaria
Re: Bulletproof theme, changing the color of the hyperlinks
In blue_style.css:JWalker wrote:I use the Bulletproof theme, blue color set. Where should I edit in order to change the color of the links, that are inserted in the entries' body ? Please tell me the css file and at which line the change should be made; I have no any knowledge of the CSS stuff.
Code: Select all
a {
color: #1F5F7F;
text-decoration: none;
}
a:hover {
color: #505050;
}
However, if you only want to change the color for links inside the entries' bodies, you'll want to add this code (at the very end of blue_style.css):
Code: Select all
.serendipity_entry_body a {
color: #1F5F7F;
}
.serendipity_entry_body a:hover {
color: #505050;
}
Remember that these changes might be overwritten by a future BP update, so make sure you have a backup!
YL