My URL: http://www.dreambelle.com/
The background image (white main, grey side bar) that is behind the text and sidebar below the slider is placed too low. You can see this issue to the right of the slider behind the side bar content…
The problem is that I cant figure out how to move the background image up via css without moving the entire body content up?
The background image is rendered from a small bar (attached)
You need to do both (make the #featured_body with a smaller height), and adjust the margin on the #sidebar
Ive tested the following this works for me in FF5:
This is happening because your
div#content
, which has thebackground-image
is placed below yourdiv#featured_body
, which is pushing it down.You have two choices, as I see it:
make the
div#featured_body
smaller height-wise, so that the bg image lines up with thetwitter div
orplace anther
wrapper div
around all the content under thenav
and add thebackground-image
to that. (That is, if you wanted the bg-img to stretch to the top of the page).