|
Posted by Chris F.A. Johnson on 06/18/07 03:58
On 2007-06-18, Isaac Grover wrote:
> Good evening from Wisconsin,
>
> I have a basic three-column with header layout and my right column is
> pushed down 18px from where it needs to be. All the horrible colors
> are still in place for your enjoyment. I'm sure this is a simple
> answer for all the css gurus out there, but it's evading me.
>
> The page in question is http://www.rfdiscgolf.org/template.html .
The first thing I notice is that you have three DIVs with
id="menuheader". Each ID must be unique.
Those divs should probably be headers (<H2> or <H3>?), and they
ceertainly shouldn't be 18px high. Don't specify a height.
Then get rid of all (or almost all; start with all) the width and
height specifications using px. Where necessary, use '%' or 'em'.
Especially, get rid of #container width and height.
--
Chris F.A. Johnson <http://cfaj.freeshell.org>
===================================================================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
[Back to original message]
|