I'm starting a new mambo based website (this is my 2nd mambo site) and I used the tutorial from allmambo.com to do the template and it looks fine in Internet Explorer, but
the background images on my div's aren't showing up in Firefox, I just get empty boxes.
it should display one "main" div that's 100% wide, 100px high, with a repeating background image. Inside this div are two other divs (both floated left) with their own background images (both also 100px high).
Works in IE, Firefox gives me a 100% x 100px empty box. I tried the css in the html, then seperated it. Tried taking off the floats, tried floating the parent div, nothing, nada, zip, zilch, zero change. Always works in IE, never in Firefox.
the demo site from the allmambo.com tutorial has the same problem:
http://demo.allmambo.com/index.php?m...te=my_template
they're using tables, I'm using divs but we've both got the same problem.
ok, I'm gonna have to post the code so it makes sense:
html:
Code:
<div class="topsection">
<div class="topleft"></div>
<div class="toplogo"></div>
</div>
css:
Code:
.topsection
{
width:100%;
height:100px;
background: url(/templates/articleblast!/images/top.png) repeat-x;
}
.topleft
{
width:150px;
height:100px;
background-image:url(/templates/articleblast!/images/top_left.png);
float:left;
}
.toplogo
{
width:362px;
height:100px;
background-image:url(/templates/articleblast!/images/logo.png);
float:left;
} Thanks in advance for any suggestions/advice!
-Jason
www.gilahacker.com (currently under development)