|
Hmm, well as I said it looks fine in my browsers so I can't really debug it. The only thing I can think of is setting vertical margin and padding to 0 for the html and body tags.
html,body { margin: 0; padding: 0; }
EDIT: I see you have already done that :P However, I see you've set margin to auto for your wrapper. I don't know if it will change anything, but try setting the margin for the wrapper to
#wrapper { margin: 0 auto; }
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
Last edited by lizciz; 07-15-2011 at 04:22 AM..
|