Hi - I've got two problems with my bulleted list in CSS, first they don't do their proper rollover (change color on rollover) and the bullets are not displaying as a square bullet, they are round. Here is my CSS file:
------
.main {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #66CC00;
list-style-type: square;
text-transform: uppercase;
}
a:link {
color: #000099;
}
}
a:visited {
color: #993399;
}
}
a:hover {
color: #CC6633;
}
}
a:active {
color: #FF0000;
}
}
.hskp {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #990099;
font-weight: bolder;
text-transform: capitalize;
font-style: normal;
}
.body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #003399;
display: inline;
}
---
------
.main {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
color: #66CC00;
list-style-type: square;
text-transform: uppercase;
}
a:link {
color: #000099;
}
}
a:visited {
color: #993399;
}
}
a:hover {
color: #CC6633;
}
}
a:active {
color: #FF0000;
}
}
.hskp {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #990099;
font-weight: bolder;
text-transform: capitalize;
font-style: normal;
}
.body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
color: #003399;
display: inline;
}
---