Adding background image? Cutline theme?
-
I can’t seem to get it..tried everything. Help would be much appreciated! Thanks in advance!
here’s where I thought needed adjusting….
custom-header,two-columns,fixed-width,rtl-language-support,white,light,right-sidebar,widgets,sticky-post
*/
body {
background:#fff;
color:#333;
font:62.5% Georgia, “Times New Roman”, Times, serif;
text-align:center;
}* {
margin:0;
padding:0;
}The blog I need help with is: (visible only to logged in users)
-
If all you want to do is to change the background, delete everything from the CSS edit window, make sure “add to existing…” is selected and add paste in the following
body { background:#FFFFFF url(URL_OF_BG_IMAGE) repeat scroll 0 0; }and replace ” URL_OF_BG_IMAGE ” between the parentheses with the URL of the background image you uploaded to your media library.
Do note that there is no “white background on the post/sidebar area which means your background will have to be low contrast, not to busy and fairly light or your blog will be difficult to read. You can add background color definitions to the post/sidebar area if you need to.
-
If I may, you don’t really need the “scroll” and “repeat” values there. This should suffice:
body { background:#fff url(URL_OF_BG_IMAGE) 0 0; } -
-
Thanks for the quick response! You guys are good….what if I want it fixed? so when I scroll the background stays in position?…
-
-
-
-
I used your method to add my background image, but I need to know now is how to make the image remain still and have only the blog scroll down. I don’t want the background image to repeat. Can this be done?
-
I answered that three posts above yours. You need to add “fixed” to the declaration replacing “scroll.”
- The topic ‘Adding background image? Cutline theme?’ is closed to new replies.