Changing the background in Bueno Theme??
-
I recently moved my wordpress blog over to bluehost. I encountered a problem trying to change the background. Before I moved I could change it under the appearance settings, now that is not available. I have the CSS upgrade. In the Bueno stylesheet, I can’t seem to find the part of it where I need to insert the image that I would like to be my background. Could someone please point me in the right direction? Thanks
The blog I need help with is: (visible only to logged in users)
-
Self-hosted blogs have different options to the ones hosted at wp.com
Usually, the blog’s background are defined in the “body” selector. You might want to try that. The syntax would be like this:
body {background: COLOR url(URL-TO-YOUR-IMAGE) 0 0 REPEAT-TYPE;REPEAT-TYPE could be:
“no-repeat” if you don’t want your background to repeat,
“repeat-x” if you want your bg to repeat horizontally,
“repeat-y” if you want your bg to repeat vertically.If you want your bg to repeat horizontally AND vertically, omit that part since that’s the defualt behavior.
Remember, it’s recommended to only type in the CSS Editor your changes/additions to the original CSS.
Now, if this is for your self-hosted blog, because the procedure can be different, then for further assistance, you need to head over to
-
body { font: 14px Georgia, Times, Serif; line-height: 1.5; color: #7a7a7a; }
That is the body code. How would I need to alter it to include an image as the background?
-
-
Also, I would recommend you reading this:
http://csswiz.wordpress.com/2009/10/15/if-you-have-the-wp-com-css-upgrade/
-
- The topic ‘Changing the background in Bueno Theme??’ is closed to new replies.