Forum Moderators: not2easy
I cannot get rid of the bullet to the left of each <li> item no matter how I set padding, margins etc. I know it's me going wrong. Have looked on the web and tried working from various examples, but still zilch.
Can anyone enlighten this thickie please? Thanks, Julia
This info fromw www.w3schools.com/css/pr_list-style-type.asp may help:
The list-style-type property
The list-style-type sets the type of the list-item marker.Note: Some browsers only support the "disc" value.
Inherited: Yes
Example
ul
{
list-style-type: none;
}
[edited by: Birdman at 9:52 pm (utc) on June 25, 2003]
IE5 doesn't like inline padding or margins, so if you were to build an inline menu setting it as display inline and you used horizontal margins to separate the items, this would appear all bunched together in IE5.
Floating the list items allows you to get around that 'bug'
See the menu here:
www.positioniseverything.net/guests/3colcomplex.html
for an example.
-HTH