Jacques or anyone,
Could you help my understanding of css with regard to the recent problem? Apologies if this is a very basic question.
In the index.php file we have, for example, the line:-
<td colspan="4" class="tableseparator"><?php echo $TT_TempAndHum; ?></td>
and in the styles.css file these lines:-
.tableseparator, .separator {
width: 620px;
border: none;
background: url(style/bar.gif) left top no-repeat;
padding: 6px 0px 6px 10px;
color:#ffffff;
}
.tableseparator, .change {
width: 950px;
border: none;
background: url(style/long-bar.gif) left top no-repeat;
padding: 6px 0px 6px 10px;
color:#ffffff;
}
I am assuming that "class="tableseparator"" in the index-txt.php file calls for long-bar.gif. If that is correct why does it call for long-bar.gif and not bar.gif?
Regards ......... Pete