views:

121

answers:

2

I have a nav that is displayed below the images. I created the nav using the ul and li. The issue I am having is that in Firefox and Safari there is a space above the list while in Explorer it is displaying correctly with the flush against the header. Please help!

A: 

without posting code you will probably never get an answer.

Brian Schroth
So you went ahead and "answered" it instead of posting a comment :)
Alex Mcp
I have yet to figure out how to comment on a question on SO.
Brian Schroth
He needs 50 reputation to comment on questions!
Wevah
A: 

Try resetting the margin & padding on your UL, then giving it value. For example

#yourDiv ul {margin:0;padding:0;margin:10px 0 10px 0}
qwertypants