09-14-2007, 01:54 PM
|
#5 (permalink)
|
|
The Contributor
Join Date: Sep 2007
Posts: 41
Thanks: 0
|
I try and keep away from the using the list-icon property apart from telling it not to use it. Using a background is way my flexible, in the way of position the list icon.
Code:
#sidebar .sidebar-list a {
font-size: 11px;
font-family: Lucida Grande, Arial;
color: #ffffff;
}
Just another note, any property that is defined and has a space in it should have double quotes around it like
Code:
#sidebar .sidebar-list a {
font-size: 11px;
font-family: "Lucida Grande", Arial;
color: #ffffff;
}
If i recall correctly, it wont validate as valid CSS without the quotes around it
|
|
|