MyBB Community Forums

Full Version: CSS Styling > Links in POST
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I have a question:
I want to only style the URL in a post ( message ) ( This does not include a postbit ).

How would I be able to do that?

The div #Posts targets the postbit as well.

I thank you for your time and help.
you can use class post_content or post_body (depending on the code in your theme)

.post_content a  {color: green !important;}
.post_content a:visited {color: magenta !important;}
(2013-08-06, 02:58 AM).m. Wrote: [ -> ]you can use class post_content or post_body (depending on the code in your theme)

.post_content a  {color: green !important;}
.post_content a:visited {color: magenta !important;}

Thank you so much!