wordpress question?

ashleyprugh

New member
okay. so, i'm redoing my wordpress theme for my personal blog. well, trying to (i have a basic template and change around the images). i'm so not css inclined. html, yeah. css, no. it confuses the heck out of me.
but i want a fixed background. and i have no idea how to do it. i looked up css codes, and tried one, and nothing happened.
SO. any ideas?
 
Here ya go:

body {
background: url(pg100000.jpg);
backgroundepeat: no-repeat;
background-attachment: fixed;
background-position: center;
}

If you don't give a background position then it will be top left. You can
use a repeating background also.

body {
background: url(pg100000.jpg);
background-attachment: fixed;
}
 
Back
Top