Header issue in CSS, Bugging me now.

Permabanned
Joined
22 Apr 2007
Posts
1,805
Hi guys, this is just some test stuff I'm doing with CSS but for the life of me I don't know whats wrong here.

I have an image defined in the CSS to appear as a header,

here is the CSS

Code:
body{
margin:0px;
padding:0px;
}

#wrapper{
width:100%;
}

#header{
height:50px;
width:100%;
background:url(../images/header.jpg)repeat-x;
}


#main{
float:left;
padding-left:0px;
margin-left:25%;
position:absolute;
margin-right:100%;
height:100%;
}

here is the HTML
Code:
<html>
<head>
<title> Online Shop</title>
<link rel="stylesheet" type="text/css" href="css/shopcss.css"/>
</head>
<body>
<div id="wrapper">
<div id="header">

Tomorrow's Toys
</div>


</div>
</body>
</html>

In FF the image appears in the right place just fine. In IE6 and IE7 there is no image, just the text 'tomorrows toys'

Any ideas?
 
Associate
Joined
25 Oct 2004
Posts
454
Location
Northern Ireland
I had a problem exactly like this the other day, the background image would not show in IE7 but did in FF and Safari.

I changed my line in my CSS from:

background: url(images/bk.jpg)repeat-x;

to:

background: url(images/bk.jpg) repeat-x;

The problem was there was no space between the ) and repeat. :rolleyes:

It had me stuck for hours and no programming notepad would pick it up as an error.
 
Back
Top Bottom