how do i remove the gap that shows up in explorer

henrikjt

New Member
Hi Everyone,

i had to put in a top padding for my content div that that the image would not extend into the navigation links. It looks great in firefox but there is a gap in IE. Any advice on how to fix the problem?

http://newburlingamecondos.com/

Thanks in advance
 

henrikjt

New Member
also, if someone would tell me how i can export my css code into an external stylesheet i would really appreciate it.
 

PixelPusher

Super Moderator
Staff member
My guess is the padding issue you were having is the inherited value given to an element by the browser. They differ from browser to browser. By assigning a value of zero, you will eliminate that issue.

External Style sheet: use a link tag in the head of the page, like so:
HTML:
<head>
    <link href="css/siteStyles.css" type="stylesheet" rel="externalStylesheet" />
</head>

The href must point to the location of your stylesheet. The relevance (rel) tag is not needed, just helpful.
 
Top