One question:
To achieve a band across the page containing two adjacent boxes I previously did this.
Code: Select all
<table width="e;100%"e; height="e;100"e; cellpadding="e;0"e; cellspacing="e;0"e;>
<tr>
<td width="e;500"e; bgcolor="e;#EEEEEE"e;>Something here</td>
<td bgcolor="e;#FAFAFA"e;>This is at the right and fills the remaining width</td>
</tr>
</table>See it fills the entire page width, shows as two blocks but the left one is a fixed width. With CSS I'm pulling my hair out trying to get it working in both IE and CSS using XHTML Strict. I'm trying (except I'm using an external stylesheet):
Code: Select all
<div style="e;width:500px; height:100px; padding:0px; margin:0px; background-color:#EEEEEE; display:block; float:left"e;>
Something here
</div>
<div stlye="e;height:100px; padding:0px; margin:0px; background-color:#FAFAFA; display:block; float:left"e;>
This is at the right and fills the remaining width
</div>Can somebody help me out please
