Forum Moderators: open
Situation >
I have a web page with a background jpg image that is positioned on center by css body tag.
Problem >
When a vertical scrollbar appear on the page my background image moves to the left (width of the scrollbar).
What I want>
I dont want my background image to move at all, even if a scrollbar appears on the page.
-------------------------
Can any1 help plzzzz.....
:)
Can you post your code? At a guess you're using Firefox (where a scrollbar appears whenever your content gets large enough to require it) and you're positioning your background image to the right hand side of the page. There are two approaches you can take to get around this:
1) Position your image away from the left hand side of the body instead of the right
2) Force a scrollbar to appear permanently (e.g. with body{overflow-y:scroll;} )