Try adding it to the html element in your CSS.
I’m sorry can you explain that a little more..I am really new at all of this.
Thank you!
You can style the html element in exactly the same way that you can the body or any other block level element:
html{
background:#fff url(images/background.jpg) repeat-y left top;
}
I am wanting to keep the original background, just add to it, I was originally just going to edit the original background image, but I am not sure it is big enough since the theme calls for it to repeat.
What part do you want the bg on? the white blog bg or a separate one in addition to the body background?
I have the background up now…but it is repeating across…which I don’t want…do I need to make it bigger or change some code?
I dont see it repeating across
background-repeat:repeat-y;
add this to your css where the background is contained, it will make it repeat vertically but not across.
right now I have it set to no repeat…but I am using a 23in monitor..could that have something to do with it?
body {
color: #333;
background:url(images/bk_body.jpg);
background-position: center top;
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
line-height:135%;
}
This is how it is coded now…I need to make sure it stays centered…how do I add the code so it stays centered as well?
repeat has nothing to do with position other than the fact that the background either repeats or doesn’t.
body {
color: #333;
background:url(images/bk_body.jpg);
background-position: center top;
background-repeat:repeat-y;
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
line-height:135%;
}
thank you so much for all your help!
Hi everybody!
I have a problem with Home page. I don’t want to have “side by side (2 column posts)” design. http://adebiet.malimetter.org/
Queston: Can I change the 2 column structure to 1 column (normal)structure?
Thanks in Advance!