To expand on the simple 2 column layout, how can I have a fixed width left
column (for navigation) and a right column that fills the rest of the space.
This is achieved in tables by setting the left cell to, for example, 150 width, and the right column to 100%.
Despite my strong disapproval of fixed width (I know, I know, the redesign is coming), the following works for me
Same HTML, change these CSS rules to the following:
#somecol {
float: left;
margin-left: 10px;
width: 150px;
}#someothercol {
margin-left: 165px;
}Cheers, Lachlan ****************************************************** The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
