Fixed background?!

This is a discussion on "Fixed background?!" within the Web Page Design section. This forum, and the thread "Fixed background?! are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Aug 3rd, 2007, 16:35
New Member
Join Date: Aug 2007
Location: Berkhamsted
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Fixed background?!

Hi

I've been designing websites for a couple of years, but have just been stumped! A client has asked me to do something similar to http://www.innocentvillagefete.com/ in that i need the background to remain static, as this site does. Can anyone tell me how you do it please?

Thanks,
Nova
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Aug 3rd, 2007, 16:42
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed background?!

Welcome to the forumz Nova!

Make sure you read the rules and the stickies in the different area!

To answer your question, just set the background-repeat property to no-repeat and the background-attachment property to fixed

So ... something like this

Code: Select all
body {
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0 0;
}
Or the shorthand version

Code: Select all
body {
   background: url(background.jpg) fixed no-repeat 0 0;
}
14.2 The background
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Aug 3rd, 2007, 16:54
New Member
Join Date: Aug 2007
Location: Berkhamsted
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed background?!

Hi

Thanks, but i still need to be able to scroll down, i just need whatever i put in a table to scroll, not the background, as it does on this site http://www.innocentvillagefete.com/.

Thanks again,
Nova
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Aug 3rd, 2007, 16:56
New Member
Join Date: Aug 2007
Location: Berkhamsted
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed background?!

ignore that, sorry. i've got it now...thanks again!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Aug 3rd, 2007, 16:57
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed background?!

good ... glad to see you got it working then.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Aug 10th, 2007, 23:40
Reputable Member
Join Date: Oct 2006
Location: United Kingdom
Age: 21
Posts: 238
Blog Entries: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Fixed background?!

Quote:
Originally Posted by karinne View Post
Code: Select all
body {
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0 0;
}
Cheers for this, just saved me from ripping my hair out
Last Blog Entry: Blog Noughts and Crosses (Nov 14th, 2007)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] About "background-image: fixed;" Scrolling Issues doctypedeclaration Web Page Design 9 Apr 13th, 2008 18:54
Fixed Background Issue LeeNic Web Page Design 6 Mar 18th, 2008 09:55
[SOLVED] Fixed Background Image? Jack Franklin Web Page Design 4 Oct 7th, 2007 19:45
fixed background with shadow aaronh Graphics and 3D 12 Mar 5th, 2007 21:35
Fixed Height minorpa Web Page Design 3 Dec 29th, 2006 15:21


All times are GMT. The time now is 18:16.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42