riddhi Posted May 2, 2007 Share Posted May 2, 2007 Here is the script written in PHP:- <table width="780" border="2" align="center" cellpadding="2" cellspacing="0"> <tr valign="top"> <td width="150" height="400" id="leftnav"> <style type="text/css"> <!-- body { background-color: #66FF33; } --> </style> <?php require_once 'include/leftNav.php'; ?> </td> <td> <?php if ($pdId) { require_once 'include/productDetail.php'; } else if ($catId) { require_once 'include/productList.php'; } else { require_once 'include/categoryList.php'; } ?> </td> <td width="130" align="center"><?php require_once 'include/miniCart.php'; ?></td> </tr> </table> <?php require_once 'include/footer.php'; ?> I wish to have 3 different colour for the three different part of the table (td). Please help. Link to comment https://forums.phpfreaks.com/topic/49633-table-colouring-help/ Share on other sites More sharing options...
ToonMariner Posted May 2, 2007 Share Posted May 2, 2007 you have given the first element and id so give the other 2 id's as well then in your css... td#leftnav { background: #f00; } td#middle { background: #0f0; } td#right { background: #00f; } Link to comment https://forums.phpfreaks.com/topic/49633-table-colouring-help/#findComment-243492 Share on other sites More sharing options...
riddhi Posted May 3, 2007 Author Share Posted May 3, 2007 thanks a lot Link to comment https://forums.phpfreaks.com/topic/49633-table-colouring-help/#findComment-244194 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.