Thread: CSS Troubles
View Single Post
Old 16-01-2005, 18:11   #6 (permalink)
nakedintruder
www.nakedintruder.com
 
nakedintruder's Avatar
 
Join Date: Jan 2005
Location: Leeds, Yorkshire
Posts: 383
Send a message via MSN to nakedintruder
try this;

#mainlink ul{
list-style-type: none;
margin: 0px;
padding:0px;
}

#mainlink ul li{
float:left;
margin: 0px;
padding:0px;
}

I've not looked at the layout more, you look like you're absolute positioning so change your x and y. this tidies the menu anyway.

You're also using way too many divs, give classes and i'ds to HTML elements, you don't HAVE to use divs, eg. the UL for the menu, why not give the id="mainlink" to that and lose the div?
  Reply With Quote