PDA

View Full Version : java color


Maxsimus
11-05-2003, 04:37 AM
I got this problem. I try to edidt a java file. It is a drop down menu. And i want the background color on the drop down to be with. but i cant get it right. Down under there is a copy of the caskading style sheet

a {
text-decoration:none;
color:black;
}

a:hover {
color:B2B2B2;
}

body {
background-color:FFFFFF;
}

image {
border-width:0;
}

input, textarea, select {
border-style:outset;
border-width:1;
font-family:verdana;
}

body, td, div {
font-family:tahoma,verdana;
font-size:12;
}

td, table {
padding:0;
}

.menu {
font-weight:bold;
}

.subtitle {
border-left:0px solid black; border-right:0px solid black; border-top:2px solid black; border-bottom:2px solid black; width:100%;
font-weight:bold;
padding:8
}

.link {
color:FF6400;
backcolor:FF6400;
}

Horus_Kol
11-05-2003, 05:09 AM
backcolor : no such definition in CSS

color:FF6400; : all HEX colour settings should start with a # marker : color:#FF6400;


Try putting a space before and after all ':' in you styles.


without seeing the code you are trying to style with these definitions (the menu tags) I can't really help any more than what i have said.