MyBB Community Forums

Full Version: Link color different than text color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like links to be a different color from the text like this. Link. How to do this so its setup for any links pasted on my forum?
you can change the color for a:link from global.css... if you want to change the color for only those links posted inside a thread you can try adding a new css like this to the end of global.css... change the color code as you require....


.post_body a {color: #ff0000;}
(2015-02-09, 12:56 PM)mmadhankumar Wrote: [ -> ]you can change the color for a:link from global.css... if you want to change the color for only those links posted inside a thread you can try adding a new css like this to the end of global.css... change the color code as you require....



.post_body a {color: #ff0000;}
by changing color code it not only changes the color of link but other Text also and code doesnt work.
I assure you that code does work. Check your HTML for unclosed tags.
Ok great it is working now the code
thanks both of you