Hiya Guys,
Having the most annoying problem in the world and can't seem to get rid of it! I have added a 'Who's on Air' script to my radio stations website - but there is a tiny line of space that keeps coming into the finished script that stops the images linking up properly - Click here for an example of what I mean on the right hand side is the image of the presenter on air - however there is a line below them which is stopping the images linking up properly .
Included is the code which I have used
<?php
$time = getdate();
$hod = $time['hours'];
if($hod>1 && $hod<5){
echo "<img src=\"kennydonair.gif\">";
}elseif($hod>3 && $hod<8){
echo "<img src=\"justinonair.gif\">";
}if($hod>6 && $hod<10){
echo "<img src=\"fattamonair.gif\">";
}if($hod>8 && $hod<12){
echo "<img src=\"stuartandstevieonair.gif\">";
}if($hod>10 && $hod<15){
echo "<img src=\"stevieonair.gif\">";
}if($hod>13 && $hod<18){
echo "<img src=\"ckonair.gif\">";
}if($hod>17 && $hod<23){
echo "<img src=\"nighttime.gif\">";
}
?>
Thanks for any help you can offer🙂