<? if($TeamLocalScore01 != '') {echo "<td width='50' valign='middle' align='center' background='../images/nhl_logo86/Result.gif' </td><a href='/Archives/2013-2014-RegularSeason/QNHL8-$Game01.html'>FINAL</a>"; }?>
just adding a </td> made it work but I did look into the css and I did this
#BoxscoreDiv {
height:29px;
width:50px;
background-image: url(../images/nhl_logo86/Result.gif);
background-position:center;
background-size:auto;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
line-height:29px;
text-align:center;
vertical-align:middle;
}
<? if($TeamLocalScore02 != '') {echo "<div id='BoxscoreDiv' </div><a href='/Archives/2013-2014-RegularSeason/QNHL8-$Game02.html'>FINAL</a>"; }?>
seems to be doing what I want 🙂
thanks for the help and pointing me in a good direction
is what I did with css ok ?