david_sakh
Nov 29th 2004, 8:46 pm
I began work on an experimental page earlier today and I stopped about an hour into it to check it out in multiple browsers. For some reason it looks like i want it to in IE but absolutely horrible in Firefox because the images on the four corners of the table aren't loading. Is this a CSS problem, an image attribute="100%" problem, an image tiling issue (the vertically tiled images don't load either) or something else? I know this may take a few minutes, but I've tried to post all the relevant information.
Look at this in both Firefox and IE:
http://www.exclusivefreegames.com/templates/Dec2004/newlayout.shtml
bear in mind I am really really bad with tables, so this could be an easy problem.
here is the relevant part of the html code:
<tr>
<td width="28" height="32" align="left">
<img src="outline_topleft.GIF" width="100%" height="100%">
</td>
<td class="OUTLINEtop" width="100%" height="18" align="center" valign="top">
<a href="http://www.exclusivefreegames.com/"><font class="smallwhite">Home<font></a>
</td>
<td width="25" height="32" align="left">
<img src="outline_topright_edged.gif" width="100%" height="100%">
</td>
</tr>
<td class="OUTLINEleft" valign="top" width="24">
</td>
<td width="100%">
<table cellpadding="0" cellspacing="0">
<!--CONTENTS TABLE-->
<tr>
<td>
(blah)
</td>
</tr>
</table>
<!--END CONTENTS TABLE-->
</td>
<td class="OUTLINEright" width="24">
</td>
</tr>
<tr>
<td class="outlinebottom" width="100%" height="32" align="center" valign="top" colspan="3">
</td>
</tr>
And here is the relevant CSS:
.OUTLINEtop {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_top.GIF");
background-repeat: repeat-x;
font-family:Arial,Veranda;
color: white;
font-size: 10px;
}
.OUTLINEbottom {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_bottom.gif");
background-repeat: repeat-x;
font-family:Arial,Veranda;
color: white;
font-size: 10px;
}
.OUTLINEleft {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_left.gif");
background-repeat: repeat-y;
}
.OUTLINEright {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_right.gif");
background-repeat: repeat-y;
}
Look at this in both Firefox and IE:
http://www.exclusivefreegames.com/templates/Dec2004/newlayout.shtml
bear in mind I am really really bad with tables, so this could be an easy problem.
here is the relevant part of the html code:
<tr>
<td width="28" height="32" align="left">
<img src="outline_topleft.GIF" width="100%" height="100%">
</td>
<td class="OUTLINEtop" width="100%" height="18" align="center" valign="top">
<a href="http://www.exclusivefreegames.com/"><font class="smallwhite">Home<font></a>
</td>
<td width="25" height="32" align="left">
<img src="outline_topright_edged.gif" width="100%" height="100%">
</td>
</tr>
<td class="OUTLINEleft" valign="top" width="24">
</td>
<td width="100%">
<table cellpadding="0" cellspacing="0">
<!--CONTENTS TABLE-->
<tr>
<td>
(blah)
</td>
</tr>
</table>
<!--END CONTENTS TABLE-->
</td>
<td class="OUTLINEright" width="24">
</td>
</tr>
<tr>
<td class="outlinebottom" width="100%" height="32" align="center" valign="top" colspan="3">
</td>
</tr>
And here is the relevant CSS:
.OUTLINEtop {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_top.GIF");
background-repeat: repeat-x;
font-family:Arial,Veranda;
color: white;
font-size: 10px;
}
.OUTLINEbottom {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_bottom.gif");
background-repeat: repeat-x;
font-family:Arial,Veranda;
color: white;
font-size: 10px;
}
.OUTLINEleft {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_left.gif");
background-repeat: repeat-y;
}
.OUTLINEright {
background-image: url("http://www.exclusivefreegames.com/templates/Dec2004/outline_right.gif");
background-repeat: repeat-y;
}