MyBB Community Forums

Full Version: Change the color of report in mod cp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Can anyone tell me how to change the color if the background color when the reports come in.
Look what I mean.
See how I can barely see the text.
[Image: 140hisi.png]
1. Admin CP > Templates & Style > Themes > global.css > Advanced Mode.

2. Find:

.red_alert {
	background: #FBE3E4;
	border: 1px solid #A5161A;
	color: #A5161A;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
}

3. Add afterwards:

.red_alert a {
	color: #000;
}
This is what it looks like when I save it.

.red_alert {
background: #FBE3E4;
border: 1px solid #A5161A;
color: #A5161A;
text-align: center;
padding: 5px 20px;
margin-bottom: 15px;
font-size: 11px;
margin-bottom: 15px;
}

.red_alert a {

    color: #000;
Remove all the  

It should look like this:

.red_alert a {
color: #000;
}
This is what it look like now, however everything is still the same.
.red_alert {
background: #FBE3E4;
border: 1px solid #A5161A;
color: #A5161A;
text-align: center;
padding: 5px 20px;
margin-bottom: 15px;
font-size: 11px;
margin-bottom: 15px;
}

.red_alert a {
color: #000;
}
It shouldn't. Are you sure you applied these edits to the correct theme?
(2011-04-17, 03:25 PM)faviouz Wrote: [ -> ]It shouldn't. Are you sure you applied these edits to the correct theme?

Yes, just made sure.


[Image: 29z530y.png]
I mean which theme did you edit?

(2011-04-17, 03:31 PM)faviouz Wrote: [ -> ]I mean which theme did you edit?

The theme that all usergroups are using.
And which theme is that? Is it the one in the screenshot? If so, this is very weird. I just tried it on a clean install on the exact same theme and it worked perfectly. Would you mind repeating all the steps again?

1. Admin CP > Templates & Style > Themes > Accord Ocean > global.css > Advanced Mode.

2. Find:

.red_alert {
	background: #FBE3E4;
	border: 1px solid #A5161A;
	color: #A5161A;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
}

3. Add afterwards:

.red_alert a {
	color: #000;
}

By the way, you should disable Codepress in the future. It has been proven to be very buggy. You can disable it at Admin CP > Home > Preferences > Turn on / off Codepress > Off.
Pages: 1 2