Design advice on static bgd and scrolling site

2 replies
  • WEB DESIGN
  • |
I would like help on how to achieve a static bgd and have the page scroll over top like this example

Araxi | Whistler BC

Thanks in advance for any help.

Vince
#advice #bgd #design #scrolling #site #static
  • Here's how to achieve a fixed background like in your example (replace "/images/backgroundimage.jpg" with the location to your background image):

    Add this code to your external CSS stylesheet:

    Code:
    body 
    {
    	background: #fff url('/images/backgroundimage.jpg') no-repeat fixed left top;
    
    }
    Or put this code between the <head></head> tags:

    Code:
    <style type="text/css">
    	background: #fff url('/images/backgroundimage.jpg') no-repeat fixed left top;
    </style>
    {{ DiscussionBoard.errors[2298509].message }}

Trending Topics