MyBB Community Forums

Full Version: Default Warning Box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
While trying to change the color of the text, I accidentally changed the table formatting and made it transparent:

[Image: mwsnap263.png]

I'm not sure how to revert this back to the default setting.

Consequently, I'm trying to change the white sub-text back to the original black color. How do I do this?
Replace the current error classes (in your global.css) with these:


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

div.error p {
	margin: 0;
	color: #000;
	font-weight: normal;
}

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	color: #C00;
	background: url(../../../images/error.gif) no-repeat 0;
}

div.error.ul {
	margin-left: 24px;
}
(2011-02-08, 04:16 AM)Spencer Wrote: [ -> ]Replace the current error classes (in your global.css) with these:


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

div.error p {
	margin: 0;
	color: #000;
	font-weight: normal;
}

div.error p em {
	font-style: normal;
	font-weight: bold;
	padding-left: 24px;
	display: block;
	color: #C00;
	background: url(../../../images/error.gif) no-repeat 0;
}

div.error.ul {
	margin-left: 24px;
}

Sorry, it didn't work. Undecided
Link to your forum?
(2011-02-08, 04:24 AM)Spencer Wrote: [ -> ]Link to your forum?

I'd best PM you instead. Sleepy


Nevermind, I got it working!