Good day all
I'm hoping someone will be able to help me with a div that is not showing as I've been banging my head for 2 days now and can't find the problem.
I have an image (for rounding corners) in a div above my container div which is not displaying in either IE or FF. Now this has worked in a previous page but it's not working now.
Please can you take a look and if you can see the problem steer me in the right direction. I have tried clear:both and a number of other things but it has not resolved the issue. HTML and CSS have been validated.
To avoid a code dump I have only inserted the below code, if you need the full code I can post it.
<div id="wrapper">
<div class="001-box-top"></div>
<div id="container">
#wrapper{
width:780px;
margin: 0px auto;
height: 1090px;
}
.001-box-top {
width:780px;
height:24px;
background: url(images/001-box-top.gif);
float: left;
background-repeat: no-repeat;
}
#container {
height:900px;
float: left;
width: 780px;
}
Many thanks in advance.
PS: I know I'm going to kick myself once the problem is highlighted but for now I am stumped.