MyBB Community Forums

Full Version: Help how to change the inside of the quote color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
How Are You Today?
I Have A Problem Whit the replys i mean

when there is a quote you cannot see what they said because of the white background and white words
How To Change It?

Thank You For Your Time.
Go to: ACP > Themes > Edit Your Theme > global.css > and find (something like this);
blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
}
and Add a color attribute to it like this;
color: #000000;

so it becomes;
blockquote {
	border: 1px solid #ccc;
	margin: 0;
color: #000000;
	background: #fff;
	padding: 4px;
}