Page 1 of 1

Unable to change background colour of messages

Posted: Wed Apr 27, 2005 2:32 pm
by jj
Hi,

I cannot find anywhere in the code to change the background colour of the messages. Does the style sheet automatically default to the backgrond screen colour?

BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

TD.upper {
color : #000000;
background : #FAEBD7;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

FONT.smaller {
font-size: 10px;
}

table.entries {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
BORDER-RIGHT: #23559C 1px solid;
BORDER-LEFT: #23559C 1px solid;
BORDER-TOP: #23559C 1px solid;
BORDER-BOTTOM: #23559C 1px solid;
}

A {
color : #0084BE;
text-decoration : underline;
}

A:HOVER {
color : Red;
text-decoration : none;
}

A.smaller {
font-size: 10px;
color : #0084BE;
text-decoration : underline;
}

A.smaller:HOVER {
font-size: 10px;
color : Red;
text-decoration : none;
}

INPUT {
font-size: 11px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
color:#000000;
background-color:#FAEBD7;
}

HR {
color: #B8CFE7;
height: 1px;
}nd-color:#FAEBD7;
}

HR {
color: #B8CFE7;
height: 1px;
}

Posted: Wed Apr 27, 2005 5:36 pm
by Klemen
Hi,

Change

BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

to

BODY, TD {
background-color: black;
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

and the just change
background-color: black;
to what color you want.

Regards

background colour

Posted: Thu Apr 28, 2005 7:32 am
by jj
Klemen Stirn wrote:Hi,

Change

BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

to

BODY, TD {
background-color: black;
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}

and the just change
background-color: black;
to what color you want.

Regards

Thanks for that.