Vertical align does NOT work the same way that it would for tables, at least not for what you're trying to achieve. LN is on track with the margin and padding to align the header sections.
I agree on the faux columns method, it will save you a LOT of headaches, I use it all the time
Quote:
|
I am also finding it hard work to get the page to look the same in dreamwever, ie 7 and also firefox. Dreamweaver seams to but dashed boarders round the div in the preview which kind of sucks when you are trying to get borders to look right.
|
The problem there is that DW 7 uses a VERY OLD version of IE as it's internal preview, I think it's actually IE 5.0 !!! As with all versions of IE 6 and below, it is chock full of BUGS. Don't rely on the DW preview, just preview in the various browsers.
A few comments on the code:
DUMP the <center> tag, it's deprecated and you shouldn't use it if you're going to use CSS. For text like "Small run highly complex components", use a proper HEADING - h1 - h6, and style the Hx in your CSS. That is where you give it color, alignment, size, etc.
Same goes for the <p align="justify">. Since it looks like all your text is justified, just set the <p> to be justifed in your css:
p{
text-align: justify;
font-size: 80%;
}
I would also urge you to give your divs ID or Classes.
For your first shot at this, you've done a pretty darn good job. Keep up the good work 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|