>
> http://www.yourwebdna.com/runyan/
>

> The background graphic should be at the top and centered about 10pixels
> down.
>
> I don't understand why the whole thing gets pushed down the page just to
> overlap the front div.
>


In the html you'd want to get rid of your #headingbackground div, and set
the background properties of it on the #formalmike div instead.

You've put position:relative on the image, setting it in front of the next
div. Relatively positioned elements leaves behind the empty space they would
normally occupy. So get rid of the relative positioning, the top: 240px and
the left:0. Float it left instead. Or even better, get rid of the align:
center on the wrapping div, give it an id, and set margin: 0 auto; in the
css.

You can also put body {padding-top: 10px} for your top 10px.

Good luck!
Eystein
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to