MyBB Community Forums

Full Version: Color Change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
fixed
Basically you can do this with adding style="color: #fff;" style in <table> tags. But you've to do this on numerous instances. Open member_register template and try adding this in <table> tags.
thanks boss ! it worked
You're welcome Wink
Hi boss,

got a new question, how do i change the font color or background in POST THREAD "error"

see my second attached photo on my first post (notice the white font it's not clearly visible"

ty
(2011-05-24, 07:13 AM)jerielm Wrote: [ -> ]Hi boss,

got a new question, how do i change the font color or background in POST THREAD "error"

see my second attached photo on my first post (notice the white font it's not clearly visible"

ty

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: #000;
	font-size: 12px;
}
works again!!! thanks boss