| Replies
|
|
|
JeremyM
|
Posted at 6:15 am on May 12, 2008 |
Quote: from rand0mguy at 12:18 am on May 11, 2008
tables? wtf??? http://www.w3schools.com/ Learn css + HTML etc
That's the most correct thing I've ever seen you post! |
|
|
rand0mguy
|
Posted at 9:24 pm on May 10, 2008 |
oh an btw if u want a 3 col layout try this | Code: | <div id="wrap"> <div id="left_column" style="float:left;"> <p>text goes here</p> </div> <div style="float:right;"> <div id="middle_column" style="float:left;"> <p>text here</p> </div> <div id="right_column" style="float:right;"> <p>text....</p> </div> </div> </div><!-- end of #wrap--> | |
|
|
rand0mguy
|
Posted at 9:18 pm on May 10, 2008 |
| tables? wtf??? http://www.w3schools.com/ Learn css + HTML etc |
|
|
allsmiles
|
Posted at 3:59 pm on May 10, 2008 |
Let me actually give it correctly. | Code: | <table cellspacing=2 style="border: solid 1px #000000;"> <tr> <td bgcolor="palishblue?whateveryouwant" style="height: 20px;!important width: 15%;">Text blanked out</td> <td rowspan=2 valign=top>BIG TEXT!</td> <td style="border: none;!important"> </td> </tr> <tr> <td valign=top> Medium Text!</td> <td valign=top> small text!</td> </tr> </table> | Any discrepancies I blame on the fact that I'm drunk right now. |
|
|
hateitandloveit
|
Posted at 3:10 pm on May 10, 2008 |
| Ready? <table width="100%"> <tr> <td valign="top" width="20%"> Left side. </td> <td valign="top" width="60%"> Middle. </td> <td valign="top" width="20%"> Right side. </td> </tr> </table> Enjoy. |
|
|
All 5 previous replies displayed. |