Guest Posted February 23, 2003 Share Posted February 23, 2003 How do I put bgcolors on the right and left columns? Link to comment Share on other sites More sharing options...
Guest Posted February 23, 2003 Share Posted February 23, 2003 In your stylesheet.css the infobox style HTH Link to comment Share on other sites More sharing options...
burt Posted February 23, 2003 Share Posted February 23, 2003 I'm pretty sure that the column background can't be set in stylesheet without creating a custom class for it and then applying the class to both of the <td> that hold the columns... Link to comment Share on other sites More sharing options...
Guest Posted February 23, 2003 Share Posted February 23, 2003 I'm pretty sure that the column background can't be set in stylesheet without creating a custom class for it and then applying the class to both of the <td> that hold the columns... class .infoBoxContents will allow you set the box backgrounds, but AFAIKS the only way to get the area of the where the columns are is the use a fixed width table and then set the body background to an image to mimic background column colors. Link to comment Share on other sites More sharing options...
burt Posted February 23, 2003 Share Posted February 23, 2003 I'm pretty sure that the column background can't be set in stylesheet without creating a custom class for it and then applying the class to both of the <td> that hold the columns... class .infoBoxContents will allow you set the box backgrounds, but AFAIKS the only way to get the area of the where the columns are is the use a fixed width table and then set the body background to an image to mimic background column colors. Naw. just give the td a class, thus: <td class="blah" width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> Then in stylesheet: .blah { background-color: #ff0000; } Link to comment Share on other sites More sharing options...
Guest Posted February 23, 2003 Share Posted February 23, 2003 I just threw a background="898888" but yea I guess maybe a CSS class would work.. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.