thisheart Posted August 6, 2005 Share Posted August 6, 2005 I am trying to fix all the content to look the same. What I mean is changing the content on the index, about us, help and products page to look like the contact page. See how it has a box with a non-shaded border. I would like to put a box around the text in the 'about us' page. As well as using this same look else where on my site. Thanks for any help. Link to my website here Link to comment Share on other sites More sharing options...
Guest Posted August 6, 2005 Share Posted August 6, 2005 The tables are done like this: ? ? ?<tr> ? ? ? ?<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> ? ? ? ? ?<tr class="infoBoxContents"> ? ? ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2"> ? ? ? ? ? ? ?<tr> Those two classes in nested tables will give you that look - eg. in privacy.php change: ? ? ?<tr> ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2"> ? ? ? ? ?<tr> ? ? ? ? ? ? ? <td class="main"><?php echo TEXT_INFORMATION; ?></td> ? ? ? ? ?</tr> ? ? ? ?</table></td> ? ? ?</tr> to: ? ? ?<tr> ? ? ? ?<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> ? ? ? ? ?<tr class="infoBoxContents"> ? ? ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2"> ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? <td class="main"><?php echo TEXT_INFORMATION; ?></td> ? ? ? ? ? ? ?</tr> ? ? ? ? ? ?</table></td> ? ? ? ? ?</tr> ? ? ? ?</table></td> ? ? ?</tr> Matti Link to comment Share on other sites More sharing options...
thisheart Posted August 6, 2005 Author Share Posted August 6, 2005 The tables are done like this: <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> Those two classes in nested tables will give you that look - eg. in privacy.php change: <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><?php echo TEXT_INFORMATION; ?></td> </tr> </table></td> </tr> to: <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><?php echo TEXT_INFORMATION; ?></td> </tr> </table></td> </tr> </table></td> </tr> Matti <{POST_SNAPBACK}> Thank you :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.