MyBB Community Forums

Full Version: change url css color in forum posts only
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to change my css color and add underline for links posted in threads / replies only

i know how to change the css in global to change the whole site etc....but I only want links posted in threads and replies to be changed.

How can i do this?
try this :
Add this code at bottom of your showthread.css in our theme css.

.post_content a:link {
color: #026CB1;
text-decoration: underline;
}

This would help youSmile
regards,
Didn't work Sad
or try this :

.post_body a:link {
color: blue;
text-decoration: underline;
}

This should help,
regards
The underline works but the color won't take Sad
Go to Global.css & Add This:

.post_content a:link {
color: #026CB1 !important; /* I used Envira's Color Code, You can use your own! Just make sure to put !important */
text-decoration: underline;  /* Lets underline the shit */
}