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. Quote Link to comment 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; } Quote Link to comment Share on other sites More sharing options...
riddhi Posted May 3, 2007 Author Share Posted May 3, 2007 thanks a lot Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.