hey guys... I'm having issues with margins on Firefox..
Everything looks good on IE7, but on firefox the margins between content and the menu are not being followed as i put in the CSS code. Instead it puts margin for the whole container instead of the content div itself..
here's the link:
http://ctimesmedia.com/charlieconcepcion/
here's the source:
http://ctimesmedia.com/charlieconcepcion/css/global.css
any suggestions?
Did you try margin: 2em
Did you try margin: 2em auto 0; ?
Firefox was simply
Firefox was simply displaying as you told it. Any time there is a difference between IE and Firefox, IE got it wrong. Always develop in Firefox. IE's bugginess can be dealt with after you have good code.
html, body { margin: 0; padding: 0; } #container { width:750px; background-color: #E1EAEB; margin: 0 auto; } #header {} #menu {} #main_content { width:375px; background-color: #fff; height: 400px; border-width: 1px 1px 0; border-style: solid; border-color: #243136; margin: 2em auto 0; }
cheers,
gary
i will test this out today,
i will test this out today, and see what happens. I will keep yall posted
u guys are genius! thx it
u guys are genius! thx it worked
Superb, thanks for letting
Superb, thanks for letting us know