Recent Topics

1 Jan 29, 2006 19:22    

http://www.neukol.org.uk/test/index.php/outlet

can anyone spot why the header doesn't sit right at the top of the wrapper when viewed in Firefox (ok in IE) That little strip of yellow shouldn't be there.

http://www.neukol.org.uk/test/skins/outlet/style.css

2 Jan 30, 2006 03:48

That's odd. Adding a border to the top seems to fix it:

div.pageHeader {
border-top: 1px solid #FFCC99;
}

3 Jan 30, 2006 04:35

I think the problem is that you have the images in the header inside a P tag, which adds some vertical whitespace by default... Try adding this:

.pageHeader p {
margin: 0px;
}

And then, to recreate the space above the "OUTLET" text, add this after the style above:

.pageHeader p img {
margin-top: 8px;
}

jj.


Form is loading...