running background

AusQB

New Member
The first page won't load for me, but I assume it's to do with the background image position.

In your CSS or wherever your styles are defined, set the background attribute like so:

background: url(<path_to_background_image>) no-repeat center top;


That's assuming the background is similar to the one on the second site.
 

mezangath

New Member
you can also add

background: url(<path_to_background_image>) no-repeat center top fixed;

where the fixed option places it connected to the browser window, that way if you scroll down, the background will stay in the same place.
 
Top