I wonder if anyone could take a look at my header on www.limelites.co.uk
I've added some shipping info bullet points to the header and wrapped them in <div id="headerShippingText">
I've inserted the following html into the tpl_header.php file:
I'm trying to style the text in CSS now so that it applies the a hover effect and goes blue when you hover over each point (the same as my categories).Code:<!-- bof-shipping text --> <div id="headerShippingText"><table border="0" cellspacing="0" cellpadding="0" id="table1" height="0%" width="266"> <tr> <td width="16"> <img border="0" src="https://www.limelites.co.uk/includes/templates/freetemplate2/images/bullet1.gif" width="13" height="9"></td> <td width="250"> <font face="Trebuchet MS" style="font-size: 1em"> <a href="https://www.limelites.co.uk/index.php?main_page=shippinginfo" style="text-decoration: none"> <font color="#555555">Next day delivery options</font></a></font></td> </tr> <tr> <td width="16"> <img border="0" src="https://www.limelites.co.uk/includes/templates/freetemplate2/images/bullet1.gif" width="13" height="9"></td> <td width="250"> <font face="Trebuchet MS" style="font-size: 1em"> <a href="https://www.limelites.co.uk/index.php?main_page=shippinginfo" style="text-decoration: none"> <font color="#555555">Fast worldwide shipping </font></a></font> </td> </tr> <tr> <td width="16"> <img border="0" src="https://www.limelites.co.uk/includes/templates/freetemplate2/images/bullet1.gif" width="13" height="9"></td> <td width="250"> <font face="Trebuchet MS" style="font-size: 1em"> <a href="https://www.limelites.co.uk/index.php?main_page=shippinginfo" style="text-decoration: none"> <font color="#555555">Low shipping costs </font></a></font> </td> </tr> <tr> <td width="16"> <img border="0" src="https://www.limelites.co.uk/includes/templates/freetemplate2/images/bullet1.gif" width="13" height="9"></td> <td width="250"> <font face="Trebuchet MS" style="font-size: 1em"> <a href="https://www.limelites.co.uk/index.php?main_page=shippinginfo" style="text-decoration: none"> <font color="#555555">Free UK shipping on £150.00+ orders</font></a></font></td> </tr> </table> </div> <!-- eof-shipping text -->
I've tried everything. Can anyone think how I could go about this? I've tried #headerShippingText a:hover {color:#0000FF;} but it does nothing.



