MyBB Community Forums

Full Version: Post Link Colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well, My forum uses a dark theme, and text in threads is all white and so are the links that are posted by users, which makes it hard to distinguish between text and a hyperlink. Is there any way to just change the link color for links in a thread/post?

I've checked for a solution for this problem, but there doesn't seem to be any sort of fix? Undecided

Thanks.
Change the color of a:link or add .trow1 a:link and .trow2 a:link and give those colors.
Won't changing a:link cause all links to change colour on the forum too?
Well, to change only the post links add .post_content a:link
(2010-06-05, 10:41 PM)computergeek67 Wrote: [ -> ]Well, to change only the post links add .post_content a:link
Correct, when you add "a:link" after an class than the a:link will only affect that class.
So that would be? :

.post_content a:link {color:#026CB1;}

Is that correct?
.post_content a:link {

color: #026CB1;

}
Thanks!

That worked great Smile