I have a basic page, as per the following.
The box appears as I'd expect in I.E. of all things, but in firefox, the bottom graphic doesnt appear. (the rounded corners and the bottom of the box)
Any ideas or pointers here? Cheers
K
[source]
<body>
<div class="contentSection ">
<div class="contentArea"><p>Some Content Here</p></div>
<div class="footer"><p>Some Content Here</p></div>
</div>
<div class="last" />
</body>
[/source]
and the css is as follows;
[source]
/* Basic Page Description
-----------------------------------------------------------------------------------*/
body {
background-color: #FFFFF0;
margin: 0;
padding: 0;
}
/* Positional Elements
-----------------------------------------------------------------------------------*/
/* Positions the Outer Frame, with teh shadows etc */
.contentSection {
margin: 0px auto;
border: none;
padding: 0;
width: 750px;
padding: 15px;
text-align: left;
background: url(../img/tiledBorder.JPG) repeat-y;
}
.last {
margin: 0px auto;
border: none;
background: url(../img/curvedBase.JPG) no-repeat left bottom;
width: 750px;
padding-left: 30px;
/* To get to work in firefox need padding-bottom: 20px; but then I get
a gap in I.E*/
}
[/source]
The box appears as I'd expect in I.E. of all things, but in firefox, the bottom graphic doesnt appear. (the rounded corners and the bottom of the box)
Any ideas or pointers here? Cheers
K
[source]
<body>
<div class="contentSection ">
<div class="contentArea"><p>Some Content Here</p></div>
<div class="footer"><p>Some Content Here</p></div>
</div>
<div class="last" />
</body>
[/source]
and the css is as follows;
[source]
/* Basic Page Description
-----------------------------------------------------------------------------------*/
body {
background-color: #FFFFF0;
margin: 0;
padding: 0;
}
/* Positional Elements
-----------------------------------------------------------------------------------*/
/* Positions the Outer Frame, with teh shadows etc */
.contentSection {
margin: 0px auto;
border: none;
padding: 0;
width: 750px;
padding: 15px;
text-align: left;
background: url(../img/tiledBorder.JPG) repeat-y;
}
.last {
margin: 0px auto;
border: none;
background: url(../img/curvedBase.JPG) no-repeat left bottom;
width: 750px;
padding-left: 30px;
/* To get to work in firefox need padding-bottom: 20px; but then I get
a gap in I.E*/
}
[/source]