I saw this in another thread… I just want to know how to modify it to reflect a 3/4 and 1/4 column.
<div class="column">Column 1</div>
<div class="column">Column 2</div>
<div class="column">Column 3</div>
<div class="column">Column 4</div>
<div class="clear"></div>
Make sure you include the following CSS in your style sheet:
.column {
float: left;
width: 200px;
padding: 10px;
}
.clear {
width: 100%;
clear: both;
}