Neil82591
Nov 11 2003, 04:30 PM
I was wondering if there was a way possible to have the center table in teh store have a left and right border line thus breaking the page into what seem to be 3 parts to the customer.
The reason I ask this is I would like to not use the left and right border colrs as I think it distracts from the center of the page.
Thanks
ForumAdmin
Nov 11 2003, 06:00 PM
I think your best way to do this would be with CSS; creating a table in the message area somewhat like this:
| HTML |
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="border-left:solid 1px #000;border-right:solid 1px #000"> <tr> <td>YourDataHere</td> </tr> </table>
|
The only issue with this would be the fact that the border wouldn't retain the height of the center content at all times. So I'd suggest using custom navigation on both the left and right and using custom tables with CSS borders on each side. Hope that helps.