MyBB Community Forums

Full Version: Change div.error text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What part of the CSS changes the text-colour of the div.error (see screenshot) where it's white , I want to change the colour of that.
This bit afaik

div.error {
color:pink;
}
(2013-02-20, 08:40 PM)Leefish Wrote: [ -> ]This bit afaik

div.error {
color:pink;
}

div.error {
	background: #efe5ac;
	padding: 5px 10px;
	border: 1px solid #e1d69a;
	color:pink; //won't be pink :P
	font-size: 12px;
}

I suppose I could use a HEX so color: #FFFF00; ?
Yup, any color you like - #444 is quite nice.
(2013-02-20, 08:55 PM)Leefish Wrote: [ -> ]Yup, any color you like - #444 is quite nice.

What's the difference between a 3 code hex and a normal 6 code one?
3 Hex code is used when all the letters are the same, just a shortened version.

#444 = #444444
#000 is not = #000001