MyBB Community Forums

Full Version: Change color of links in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

have a question, I want to change the links in post only and I don't find the code that works.

I have tryed the follow codes and not working here:

.post_body a {color:#5d73a3;}

.post_body a {font-color:#5d73a3;}

.post_body a {font-color:#5d73a3 !important;}

.post_body a {color:#5d73a3 !important;}

post_body a
       color: #5d73a3;
 
post_body a
       color: #5d73a3;
       text-decoration: none;

Non of the codes works for me, so annyone knows the working code for change the color from the links in post ONLY the links in post the rest is ok!!

Thanks helping me

,




SOLLUTION!




I have found it with al little bit playing with the codes. I need to put this codes:

.post_body a:link {
	color: #253a67;
	text-decoration: none;
}
.post_body a:hover, .post_body a:active {
	color: #253a67;
	text-decoration: underline;
}
.post_body a:visited {
	color: #253a67;
	text-decoration: none;
}

Thats works for me Big GrinBig Grin