MyBB Community Forums

Full Version: Need coding related help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay I now HTML etc but I need to know how I would go about by changing the font colour of;

When you do something wrong in a post or you are posting too quickly you get a message at the top which you have to highlight to be able to see. Picture explains below.

[Image: Error.png]

Also, how would i go about changing the font colour of;
[Image: 2la8xf4.jpg]


Any help will be very appreciated Smile
Vave a look at this class in global.css for the error:

div.error {
	padding: 5px 10px;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	background: #FFF6BF;
	font-size: 12px;
}

Does yours have a 'color' attribute...??

And for the other links:

.bottommenu {
	background: #efefef;
	color: #000000;
	border: 1px solid #4874a3;
	padding: 10px;
}