Hi,
If you are talking about the default margins of the ul then the answers the same as I gave you in the other post which you have failed to implement 
Code:
#navbar ul {margin:0;padding:0}
An easy way to set all the margins and padding to zero is to use the universal selector as follows.
Code:
* {margin:0;padding:0}
That will set the margins and padding of all elements to zero but means that you will have to explicitly set them yourself.
Your background image is not correct in mozilla browsers because you have used background fixed which is relative to the viewport and not the element is applied to. That means it will only show in that element if it happens to be over the position that you have placed the image.
Take out the background fixed altogether as I assume you just want it in the element itself.
e.g.use this shorthand to define everything in one go.
Code:
background:#ddd url(assets/img1.gif) no-repeat right top;
Paul
Bookmarks