View Full Version : Help with backgrounds


Milena
05-24-2006, 09:57 PM
okay so how do i get a background fixed in a certain spot so that i can put text in it like a blog or something??? I know i have to use like background {Position:fixed} or something like that. help!

{C-S-S}
05-24-2006, 11:24 PM
Well, to make a fixed background-where it dosn't repeat(im asuming thats what you want)-you can put this code in the head section:

body {
background-image:url('YOUR_IMAGE.gif(or another extention)')
background-repeat:no-repeat;
background-attachment:fixed;}


and if you want it in the center put this in the <head> section instaid:


body {
background-image:url('YOUR_IMAGE.gif(or another extention)')
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;}


Hope that helps!