Oops, I didn't notice you were doing this in the body:
position:absolute; left:652px; top:152px; width:148px; height:447px; z-index:7;
Actually your design looks fine. What I meant by margin based positioning is instead of:
left:652px; top:152px;
Put in:
margin: 652px 152px 0px 0px;
(if that's the right order, I think it goes, margin: left top right bottom;)
That isn't going to be the precise measurements, but they're more consistent than the former method. In your design this doesn't appear to make a huge difference anyway so you can probably get away with left and top.
<input name="imageField" type="image" src="logo.gif" align="middle" width="73" height="101" border="0";>
This tag also isn't XHTML compliant, you left off the <input /> closing forward slash. I'd stick with:
<img src='logo.gif' style='width:73px; height:101px; border-width: 0px;' />
It looks like you're trying to do some hacks for Navigator 4, I wouldn't worry about trying to get things working in that browser, currently statistics show that less than 1% of users are still using it -- but that's your perogative, OTOH, it's nice to have full support for old browsers. After trying to design sites to work in that browser for years I've given up on it completely. Personally, I go by the idea if programmers stop supporting browsers like NS 4, maybe people will stop using them. ;)
>i tried putting in the suggested code, but messed up somewhere. all
>i'm getting is text, not the jpg. [i don't understand what i'm doing].
lol, sorry I had a typo in my post, I left off the 'n' in background.
#header {
background:#fff;
height:150px;
}
Try:
background: #fff url('header.jpg') no-repeat scroll center center;
If the image is larger than the <div> its edges will get cliped.
>i know i still need to get everything into css, and not have it spread all over the place
For a beginner though you've got a good start. While in the development stages that's not such a bad thing, as long as you move everything to the style sheet by the time you're done.
Regards,
Rich
::::::::::::::::::::::::::::::::::::::::::
The Spicy Peanut Project
http://www.spicypeanut.net
::::::::::::::::::::::::::::::::::::::::::