MyBB Community Forums

Full Version: Global CSS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sometimes when i add custom css to global.css , it doesnt turn into highlighted css code , it just stays all in black , then when i submit it , its all messed up.

Im just trying to add this
.lightblue_box {
background-color:#EDEFF4;
border:1px solid #D8DFEA;

}
It could be because you have no gap between the colon and the code. See below.

a:link, a:visited {
	color: #7200ff;
	text-decoration: none;
	outline: none;
}

so its color:GAP#7200ff;

See what I mean?