MyBB Community Forums

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

Okay so i recently got a reported post on my forum and it looks like the texts the i reported post thing on the modcp thing is messed upHuh

[Image: 96e9a5de9258d1042d0adf6226117901.png]

So how can i fix this to change it to the regular color on there?

Please helpSmile

Thanks MyBBHeart
Open global.css and find;
.trow_shaded {
	background: #ffdde0;
}
and add color attribute, like this;
.trow_shaded {
	background: #ffdde0;
color: #000000;
}

You also have to add a:link class objects since the reported posts may have links (such as username etc.) Like this;
.trow_shaded a:link,  .trow_shaded a:active, .trow_shaded a:visited, .trow_shaded a:hover{
color: #000000;
}
(2012-05-23, 03:53 PM)Yaldaram Wrote: [ -> ]Open global.css and find;
.trow_shaded {
	background: #ffdde0;
}
and add color attribute, like this;
.trow_shaded {
	background: #ffdde0;
color: #000000;
}

You also have to add a:link class objects since the reported posts may have links (such as username etc.) Like this;
.trow_shaded a:link,  .trow_shaded a:active, .trow_shaded a:visited, .trow_shaded a:hover{
color: #000000;
}
Okay that help me a little bit but i need a little more help Undecided
Look-
[Image: 8b4a6bb0d679c26be2e91a62c5999281.png]

Anyone can help me please?

ThanksHeart
You've to add background attribute in "trow_shaded a:link" classes similar to the trow_shaded class.