MyBB Community Forums

Full Version: Editing and fixing error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I fix this image error?
Picture:
[Image: imageowq.jpg]


How do I edit the error message background color?
Picture:
[Image: errormessage.jpg]
For first image: You've to make sure that collapse images are there in ./images/yourtheme folder. If you give me your URL then I would give you its complete path where its actually located.

For second image:

Open global.css and find;
div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}
and Add the color attribute to it like this;
div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
color: #fff;
	font-size: 12px;
}