Site check please
Out of context: Reply #8
- Started
- Last post
- 14 Responses
- Stugoo0
I dont know if this helps but this is briefly how i would lay my structure out.....
css:#main_col {
float:left;
margin:0;
padding:0;
display:inline; /*ie6*/
width:900px;
background:#ff0;
}#col_01 {
float:left;
margin:0;
padding:0;
display:inline; /*ie6*/
width:190px;
background:#0f0;
}#right_hold {
float:left;
margin:0;
padding:0;
display:inline; /*ie6*/
width:680px;
background:#f0f;
}#col_02, #col_03{
float:left;
margin:0 4px 0 0 ;
padding:0;
display:inline; /*ie6*/
width:258px;
background:#f00;
}
#footer {
float:left;
margin:0;
padding:0 0 0 190px;
display:inline; /*ie6*/
width:680px;
background:#0ff; }with the following markup:
<div id="main_hold">
<div id="col_01">
email and stuff
</div>
<div id="right_hold">
<div id="col_02">1st column stuff</div>
<div id="col_03">2st column stuff</div>
</div>
</div>
<div id="footer">"grid" stuff in here</div>hope it helps.