How to add background picture in Blogger?

December 5, 2008

Adding background picture (image) in Blogger is a great way to stylize your personal Blog, and make it stand out among the others. This way, you can personalized it, and make it recognizable and unique.
And it's quite easy, really....

WHAT CAN YOU DO?
  • you can choose any picture you like for background
  • or find some free backgrounds on internet
  • it can be across the whole screen, or in the place you want it to be
  • you can use small pictures (images), big ones.....
  • whatever you imagine......well, almost.
...in Blogger, with "Fonts and Colors" options, you can change only the color of your background (and not in all templates...), and this, sometimes, is just not enough...


BACKGROUND STYLES
When choosing the pic, note that there are 2 different styles (types) of pictures (images) used for backgrounds:

1. small images (usually textures or gradients) that are either 1px wide, or appear as a little square...
...the thing with nb 1. is that you use that little image, and tell blogger to repeat it all over the screen....(the page load time is faster)

2. pics with certain size (width and height)
...and nb 2. is a picture, with a certain size, and you CANNOT expect from Blogger to fit it perfectly on your screen. It will appear the same size as it is (page load time slower).


WHEN YOU HAVE THE PIC, NEXT THING IS:
-- to upload your picture (image) to a free web host (like Photobucket, Tinypic...) to get the URL address of the pic, which we'll use in Blogger code...
-- back up your blogger template (1 minute)
-- go to DASHBOARDLAYOUTEDIT HTML, and find the following part of code:
body {
background:$bgcolor;
...this CSS style (code) is from Minima (default Blogger template), so your background line can be a bit different
...important thing is to locate background: and is has to be in the body { section...
...that's the line of code we will use for adding background pictures (for all examples)


ADDING BACKGROUND PICTURES IN BLOGGER

:Pictures (textures, gradients) that repeats all over the screen:










background

background

background

background


Continue reading...

This is the easiest (and quite fast) way op applying the background. Ok, you have the pic. Next thing is to place it into Blogger. Your code should look like this:

body {
background: url(YOUR PICTURE URL);
...just replace the part in orange with the URL of your hosted picture...Save Template. And that's it!

...there's always BUT. If your template doesn't have colored Post section, Header and Sidebar you'll notice that your text is barely visible...
So, you have to add some color to those sections. You have to find codes (CSS style) of those sections, and add the following line to them:
background:#000000;
....the hex value represents color (in this case, black). Change it to whatever color you like. Look here for color values.

...if you're thinking: "where are those sections in code? ...where to put this line?", I can show you the example for Minima:

- Post Section + Sidebar + Header --> #outer-wrapper {
- only Post Section -----------------> #main-wrapper {
- only Sidebar ----------------------> #sidebar-wrapper {

....just place the code under those lines. If you can find the exact same lines in your template, well, you'd have to figure it out then. But it's just a variations of this usually....(like: "#sidebar-wrap {. ", or "#main-wrap1 {".....)

To add a Gradient as a Blogger background (example here), it's a bit different. For this, you'll need to make a gradient in some graphic software, and cut a small piece (vertical, or horizontal) that you'll use as background.
Then you have to tell Blogger to "spread it" across the page, with this lines:
background:#ffffff url(PICTURE URL) repeat-x;
...this is for my example. I've set a background to white, an place my background to repeat horizontally.
repeat-x ---------> horizontal
repeat-y ---------> vertical

My pic is a thin line 10px wide, and has height 1200px. The gradient is from brown (top) to white, so the background Color (#ffffff) takes over the gradient when you scroll down...



:Pictures with fixed size:
Personally, I prefer this ones. Because you can be more creative.










background

background

background

background


Continue reading...

The things you should take care of here:
- the size of your background pic
- position of the picture
- the size of your blog area

...well, all of this depends on the effect you'd like to achieve. We will use the following line to apply our picture to background:

background: url(YOUR PICTURE URL);
...replacing the part in orange with the URL of your hosted picture..
We also need to specify the options for our picture. We have to tell Blogger:

- if it will repeat the pic or not:
background-repeat:no-repeat;
background-repeat:repeat;
background-repeat:repeat-x;
background-repeat:repeat-y;

- do we want our pic fixed (same picture when you scroll, example here), or the one that will "scroll" along:
background-attachment: fixed;
background-attachment: scroll;

- where will the picture be placed:
background-position:top center;
(you can also use 'top left', 'top right', 'center left', 'center center', 'center right', 'bottom left', 'bottom center', 'bottom right')

background-position:top center; x% y%
(here, specify the horizontal and vertical position, i.e. 110% 35%)

Here's the example. I have a picture, and I want to center it, I don't want it to repeat, I want it to be fixed (it will be like a frame around my blog). The code (CSS style) will look like this:
body {
background:#000000 url(URL OF THE PIC) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;
...play with these options until you get it right...



WHERE TO FIND FREE BACKGROUNDS?

The ones used in this tutorial:
Squidfingers
The Cutest Blog On The Block

Other places:
BGpatterns, DinPattern, StripeMania, Ava7Patterns, Background City, ColourLovers

If you have any question, just ask.....

Smile!


post signature
Face It! Tell Your Tweets Digg It! Add to Delicious Stumble Upon I Reddit! Mixx it Up! Add to Your Faves

171 comments:

Purple and Paisley said...

the very top picture in this post...with the collage of all the different backgrounds...where did you find the two in the far right row...top one and 3rd one down that look like fabric quilt squares? i love them but went through your links and can't find them? please share? thanks, t

pocket said...

Hey...
I honestly can't remember....but I do have them on my computer. I've just send them to you on e-mail..
Smile!

Cybele's patch said...

Hi, I managed to create and add my own background. Now I would like to get my header back. I tried evrything you wrote and I tried everything Blogger Help advised. Cleared my cache, added the picture with hostlink (Tinypic) in HTLM and it just didn't work. Removed the link again. Managed to enlarge the header box en put some color in but still no picture. What could the problem be?

pocket said...

If the default Blogger option for uploading pics ain't working, change the following line in the code (under the "#header-wrapper"):

background:#191970 url(URL OF THE PIC)no-repeat bottom right;

....keep it in one line (don't break it)...
....and change the CAPS into URL address of your hosted picture....

Smile!

Cybele's patch said...

This is what I did and still no header

#header-wrapper {
width:900px;
margin:0 auto 10px;
border:1px solid $bordercolor;
background:#191970 url(http://i38.tinypic.com/29f8spg.jpg)no-repeat bottom right;
height:300px;
}
background and url are all in 1 line

pocket said...

Here's the problem. You're picture is there. I can see it. But I'm using Firefox browser. You are on Internet Explorer, ain't you?
Do the following. Replace the code your code with this one:

#header-wrapper {
width:900px;
margin:0 auto 10px;
border:1px solid $bordercolor;
background:#191970 url(http://i38.tinypic.com/29f8spg.jpg);
background-repeat:no-repeat;
background-position:bottom right;
height:300px;
}

...now, it should work. Keep it in one line again...
...and next time, let's rather do this with E-mail...

Smile!

Cybele's patch said...

Thanks very much. I'm indeed using internet explorer. But it worked. I'm happy. Send you an email.

Jared said...

I've uploaded an image to picasa for use on my blog. picasa says that my image is 1045x572 but when I try to use the image on my blog it comes out much smaller. is there something that I'm missing? how can I get blogger to see the full size image?

pocket said...

You mean your Post picture, right?
Well, Blogger is weird when it comes to uploading pics.
Try using tables. Check the article about placing pics in tables.
If you do it like this, when you click on the thumbnail, picture will open in full size...

Smile!

Jared said...

oh I suppose I should have mentioned that I am trying to use the picture as my background.

should I use another image hosting company or can I get picasa to work?

thank you for the quick reply. you and your blog are very helpful.

cheers

pocket said...

Hey Jared...
No, Picasa should also do. Be precise when placing your pic in the code. Do it like this:
body {
background:#000000 url(URL OF THE PIC) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;

...change the URL with your own, and specify the settings as you wish...
...it has to work...the problem may have occurred cuz you didn't specify the position of the pic...
...try, and ask again...

Smile!

Jared said...

okay so I think it's not working because I'm using the wrong url.

from picasa I have tried both the "imbed image" link and the "link to this image" link. the imbed just turns the bg white and the other only give me thumbnail options from 800px down to 144px.

so where do I find the url for the full size image?

pocket said...

...create an account with Photobucket.com or Tinypic.com
...I use those, and they work perfectly...

Smile!

Jared said...

sounds good.

thanks for all your help

cheers

♪Tobi♪ said...

this is what i see:

*body {*
margin: 0px 0px 0px 0px;
*background:#fff url("http://www1.blogblog.com/dots/bg_dots.gif");*
background-position: 50% 31px;
text-align:center;
font:x-small Verdana, Arial, Sans-serif;
color:$textcolor;
font-size/* */:/**/small;
font-size: /**/small;
}

i believe the part i starred is the part u r talkin about. also, i have a background on my blog already, but when my friends (PC users) (i am a mac user) look at it, they dont see a background. i have a background from the cutest blog on the block and they say to use a widget. is that why no one can see it?

also, no one can see the font i use!! im using the font u gave me. only i can see it!! other people tell me that it is HUGE and that it is impossible to read. help?

pocket said...

About the background. I advise to remove the default one first:

background:url("http://www1.blogblog.com/dots/bg_dots2.gif") -100px -100px;

...just delete this line...I am a PC, and I see it...

About the font. That's a normal thing. That's way you see the same couple of fonts all around the web. They are default ones, and everybody have them. When you use a custom one (like you do), that means that only people who have the same font installed, will be able to read it...just use the default fonts, and use the other one in pictures (like I do)

Smile!

Dev said...

I am tryin to make a pic as the background in my blog following ur criteria..
But it isn't workin..
I first tried with picasa and now with tinypic too but no help
this is the following code..



body {
margin: 0;
text-align: center;
min-width: 760px;
background: #ce436e url(http://tinypic.com/usermedia.php?uo=DF4uk3fRa%2BZSvJVGGuZE%2BQ%3D%3D) repeat-x $startSide top;
color: $textColor;
font-size: small;
}

pocket said...

You are using the wrong link from TinyPic. You have to copy the code from "Direct Link for Layouts" box...
And change your code into this:

body {
margin: 0;
text-align: center;
min-width: 760px;
background: #ce436e url(URL ADDRESS);
background-repeat:repeat-x;
background-position: top center;
color: $textColor;
font-size: small;
}

...just replace "URL ADDRESS" with the correct link...

Smile!

Pebbles said...

I am having a problem with mine. I can get the image up there but it is too tiny. How do I get it to stretch to fit?

Oh, I mean for the background picture...

pocket said...

Hey Pebbles...
I can only guess....what kind of pic? Where? You've set it to repeat? Is it a gradient? Fixed?

If you just need to make it wider, use any graphic editor to do so....I can do it for you....It's a 2 minutes job...)

Smile!

angel_of_charm said...

your blog is really pretty and helpful! thanks for sharing this tutorials--it really helped me gain some idea as I'm absolutely clueless about making my blog pretty..still learning

bitesandbooze said...

so i just made a header for a new blog in illustrator, placed it in photoshop to change to a .jpg and uploaded it to a new blog. For some reason, i designed it with brown colors and it shows up blue! any clue what might be happening?

pocket said...

Hm...You have to use RGB colors. If this is a problem...
While in Photoshop, try saving a document through FILE ► SAVE FOR WEB AND DEVICES (save it as .gif, or .png)
Smile!

Lu said...

Hi again, Is there a specific pixel size I should make my image to make it fit? I actually successfully did two blogs and now I'm trying to do one for a friend and can't remember how I got the image to fit! It keeps adding the image on the side. It seems to be tall enough though... sigh

Can you email me the response? littlekariblueATgmailDOTcom

Thank you!

K said...

Hi, tank you for a topblogg! Just started out fixing up my blogg and got stuck with two thing.

I want to erase the underlining under all the links and my bloggheadlines. i cant figure out how to.

I also want the texts to have more space inbetween them.

Can you help?

Thank you !

pocket said...

Hey K!
To remove underline style go to LAYOUT ► EDIT HTML and find this part:

a:link {
color:#612e00;
text-decoration:underline;
}
a:visited {
color: #956839;
text-decoration:underline;
}


...remove the style from both, so you'll have:

a:link {
color:#612e00;
}
a:visited {
color: #956839;
}

To gain more space between Links, find:

.sidebar ul li {
list-style: none;
margin:0;
}

..and change into:

.sidebar ul li {
list-style: none;
margin:0 0 4px 0;
}

..adjust 4px to whatever suits you..Preview/Save.

Smile!

Anonymous said...

Hey! This is great but why when I put in the code I just get a plain white background?

pocket said...

Hey...What code exactly? Where? What do you want to accomplish? You can also email me, I'll help...
Smile!

Bread Boxes to Breast Plates said...

I have the same problem as the previous person. this is what I've got:

body {
margin:0;
font:$bodyfont;
background: url(http://s546.photobucket.com/albums/hh414/in_the_guise/?action=view&current=breadbox2.jpg);
color:$textcolor;
}

This is the Photobucket URL, but not the HTML Code for Websites & Blogs, because i was not allowed to post it. the "TARGET" was not allowed. the whole thing is a mess. Should I try using Tinypic instead?

p.s. can i shrink the image and repeat it?

pocket said...

Hey Bread Boxes...
You have to use Direct Link from Photobucket...Change your code into this:
body {
margin:0;
font:$bodyfont;
background: url(http://i546.photobucket.com/albums/hh414/in_the_guise/breadbox2.jpg);
color:$textcolor;
}

..and later, choose settings you like (repeat, fixed....). You have instructions in the Post.
Smile!

Kaichou said...

Thankyouthankyouthanky!!! having SO much trouble with it the dumb thing wouldn't work because I wasn't adding parentheses. ^.^;;

rina's palace said...

hi pocket,
can you help me to put the same picture on BOTH sides of my blog (i've managed to put it on either side, but not both). Here's what I've put in the code:

body {
background:#ffffff url(http://farm4.static.flickr.com/3311/3209406886_3361b72d3b_o.jpg) ;
background-repeat:no-repeat;
margin:0;
color:$textcolor;
font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
background-attachment:fixed;
background-position:bottom left;
}

thanks!

pocket said...

Hey Rina....You have to do 2 things:
1. Change the background-repeat line into this:
background-repeat:repeat-x;

2. Find the outer-wrapper, and add some background to it..It should look like this:
#outer-wrapper {
background:#ffffff;

Preview/Save/Smile!

rina's palace said...

hi pocket,
Before you posted the answer, I slept on it and thought of putting a background colour to the text body but didnt know where to begin.

Thanks for your help! That's exactly the answer I've een seeking! *smiles*

Trudi said...

Wow - you are so helpful to those that have asked questions! What a great person.

So here's one I am trying to solve. I have figured out all of the ins and outs (mostly) of how to add a background. BUT :0), I am curious to find out whether or not there is a code available that will adjust the size of the background for different screen sizes? As an example, I have a large monitor on my desktop,and so my background 'fits' plus shows right and left edges. BUT, on my boyfriend's laptop (15" screen) - I only see the images closest to the blog "guts" (sidebar/main area)
??? I would think there must be a way?????

Thanks for your assistance!

pocket said...

Hey Trudi...
Well, no. And yes. But better no. :]
Meaning, there are some solutions. But it's not even worth trying them. Each one has a bug. Or a problem....Sorry.
If I ever find some magic code, I'll sure let you know....
Smile!

Two Dresses Studio said...

Thanks for your quick response. I've subscribed to your feed. Best of luck!

Shine On!

Jahz said...

a million thanks this guide works unlike the other blogs that i have searched

Yaniez said...

How can I put own background to the blog?
As usual I know, make a link with photobucket.
I try to put, but it's too small. why?

Please help me... thank you...

pocket said...

Seems you've got it....If you still need help, ask. But be more precise: what picture, URL address of the Blog, where do you want it?

Smile!

Kim said...

Pocket - Thanks so much for your blog of excellent information for those of us who want to "personalize" our blogs to our liking but who are technically challenged and glean a WEALTH of information from those like you!!! :-)My question is the same as "Lu" above - Is there a specific pixel size I should make my image to make it fit? Right now I have it as:

background:url(http://i287.photobucket.com/albums/ll151/kritter1016/StCroix12x12.jpg);
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;

But I really wanted my image to stretch across the entire screen and not repeat - it appears to be "long" enough since it's fixed but I - don't like the white space on each side. Any thoughts...you are a blessing to a newbie like me. Thank you in advance for your help. You can email me personally at kritter1016ATcharterDOTnet

pocket said...

Hey Kim...
Unfortunately, no...Because this doesn't depend on you, or your background, but on the resolution and the screen size of the users. Everybody have different settings, and your background will also appear different for each combination...
It's a bummer, I know. There is some kind of a script that can stretch it, but it doesn't really work....

And photographs - they are a nightmare for background optimization. And adjustment.

Sorry....

L@k$hmi Sainathuni said...

Hi Pocket!

Ur blog is very helpful. But can you please tell me how to upload the pics? I have uploaded a pic to
"http://s693.photobucket.com/albums/vv291/lassibangi/?action=view&current=zen20copy.jpg" and when I am trying to use it in my blog it is not allowing me to do that. Can you pls. guide me as to how to diplay it?

pocket said...

When you're coping the link from the Photobucket, you have to use Direct Link.
This one will work:
http://i693.photobucket.com/albums/vv291/lassibangi/zen20copy.jpg

Smile!

L@k$hmi Sainathuni said...

Thank You so much pocket! On seeing your messages and useful tips, I got interest to develop a blog for myself. Thank You so much. Your blog is very inspiring for a novice bloggers like me...

Cheers,
Lakshmi

pocket said...

L@k$hmi Sainathuni,

I encourage you to do that! It's not that hard, really. You'll lose some nerves for sure, but you'll get it soon. Fortunately, there's an enormous number of quality articles & tutorials on the web that will help you...
Step by step, thought by thought...

Smile!

Anonymous said...

man you're complicating

you can put css code in one line

body
{
background: #00ff00 url('smiley.gif') no-repeat fixed top center;
}

Anonymous said...

this is taken from:
http://www.w3schools.com/css/css_background.asp

read before ask ;)

pocket said...

Dear Anonymous...
You've really enlighten me!
Well of course you can put it in one line, but like this, people can know exactly what are they doing..
And if you have any experience, you would know that sometimes, some older browsers can't read this style properly, and may result bad display of the background. Which I try to avoid in tutorials.

Ok?

Dr. Frirdevs said...

hi how can i make the template opacity low as uhlikethat.com ?

pocket said...

Dr. Frirdevs,
There's on opacity there...It's only the background pic:
http://www.airrockstar.com/images/ULT_Background_v6.jpg

But, you can add this to your outer-wrapper to make it transparent:

background-color: #FFFFFF;
opacity:.93;
filter: alpha(opacity=93);
-moz-opacity: 0.93;

...change the color, and opacity value (you have to change the value in all of them, and it has to be the same one...)

Add this in your outer-wrapper, like so:

#outer-wrapper {
background-color: #FFFFFF;
opacity:.93;
filter: alpha(opacity=93);
-moz-opacity: 0.93;

:]

Purple and Paisley said...

hi, pocket! how are you? i went to colourlovers and found a new background i like...but how in the heck do i download it? do i have to be a registered member of the site or what? usually there is just a code i can copy and paste, so i'm not sure how to do this one...thanks for any help you can give me...and congratulations...your blog is a huge success! ☺

Purple and Paisley said...

p.s. i know i have to host the background somewhere...like photobucket...but will it still be a seamless background? sigh...sorry...i hate bugging you...i'm just used to copying and pasting a simple code...not downloading something...aaargh!

pocket said...

Hey hi niteyshift! Long time no write....

About the background.
1. When you find the pattern you like on ColourLovers, click on it, and the info page will open.
2. On the right side, you'll see the button Download this pattern
3. New page will open with the pic in the left corner.
4. Right click on the pic, and save it to your comp.
5. Upload it to a free pic host (let's say, Photobucket)
6. Copy the Direct link address
7. In Bloggger, go to LAYOUT ► EDIT HTML ► and change this line:

background:#ffffff;

..into this:

background:#ffffff url(PHOTOBUCKET DIRECT LINK);

..just replace the CAPS with the uploaded pic link...
..doing this, you'll force your new pic to repeat all over the page..as a background..

Smile!

Sanity said...

When I upload my pic to Photobucket, photobucket keeps shrinking it. On my PC, it is 2320 x 1576. Photobucket shrinks it to 1040 x 696, and then blogspot is shrinking it further. I am TRYING to use it as a background across the whole screen, but so far all it's doing is showing UNDER my banner and frustrating the tar out of me. this is the code I've placed:
body {background-image: url(http://i204.photobucket.com/albums/bb95/Sanity8080/blogbackground.jpg); background-position: center; background-repeat: no-repeat; background-attachment: fixed; }

saiwin said...

finally, i've found you...!!! you make my assignment much easier...! thanks...!

Mys said...

where do i find big photos or graphics that can be used as background. besides cutestblogontheblock since the graphics they offer don't match for a two column template?

pocket said...

◄ Sanity ►,

Photobucket has limits: Photobucket account. In fact, almost every host provider does. Try with: Tinypic.com. They have unlimited bandwidth and size (not sure about resolution).
Anyway, 2320 x 1576 is way too large. Decrease it (around 1300px width will do just fine..), and mask the rest of the white background with color:
background-image: #342F33 url(IMG URL);
...not perfect, but it works...


◄ Mys ►,

Hardly. TCBOTB are specialized in making large backgrounds with fixed width. And there's nothing to do really, except making your own...
Or downloading one of theirs, and stretch it.

pocket

Andreea said...

hello! your tips are very helpful, well done!
i added an image to the background and it worked, but i have a little problem, the image is tiled all over the page, i just want it on the margins..don't really know how to explain, i ain't a native english speaker..for example the white margins of your blog i would like them to have the tiled picture and the section with the posts to be black, just as yours..i read it has smth to do with the outer wrapper section or smth, but my html code doesn't have this sort of section..so this is what i've done (basically just changed to background):
body {
background: url(http://i288.photobucket.com/albums/ll189/ellybijoux/blooog/sun-back1.gif) repeat;
margin:0;
padding:40px 20px;
font:x-small "Trebuchet MS",Trebuchet,Verdana,Sans-Serif;
text-align:center;
color:#ccc;
font-size/* */:/**/small;
font-size: /**/small;
}
i hope i made myself clear more or less :D

pocket said...

Andrea,

hm. It's hard without looking at real Blog. But, try this:

body {
background: url(http://i288.photobucket.com/albums/ll189/ellybijoux/blooog/sun-back1.gif);
background-repeat:repeat-y;
background-position:top center;
margin:0;
padding:40px 20px;
font:x-small "Trebuchet MS",Trebuchet,Verdana,Sans-Serif;
text-align:center;
color:#ccc;
font-size/* */:/**/small;
font-size: /**/small;
}

...we've just set it to repeat vertically...

And your English is fine...:]

Andreea said...

well..this is how it looks like after i made the changes,unfortunately doesn't work :(( http://andreeak.blogspot.com/
I don't think setting it to repeat vertically would satisfy me, because the image is kind of small and i want it to be applied to the whole background except the posts section of the blog..i guess i should send you the html encoding of the blog, it's too big to post it here, so would you please tell me an e-mail address where i can send, if you are willing to help :D
thank you :)

pocket said...

Andrea,

now I know what you want. No need for sending the code.
1. Go back one step, and change the background into this:

body {
background: url(http://i288.photobucket.com/albums/ll189/ellybijoux/blooog/sun-back1.gif);
margin:0;
padding:40px 20px;
font:x-small "Trebuchet MS",Trebuchet,Verdana,Sans-Serif;
text-align:center;
color:#ccc;
font-size/* */:/**/small;
font-size: /**/small;
}

2. Next is to give the outer-wrapper a little color. Find the:

@media all {
#content {
width:660px;
margin:0 auto;
padding:0;
text-align:left;
}

...and add a background style, like so:

@media all {
#content {
background:#ffffff;
width:660px;
margin:0 auto;
padding:0;
text-align:left;
}

This is for the white color...you choose the one you like..

Ok?

Andreea Koumoushis said...

done..but still doesn't work :(
and one more thing to complain about: 2 "e"'s in my name please :D...anyway, call me however u want as long as u can fix my blog ;)) just kidding, thanks for ur help
well, any other suggestion? :s

pocket said...

I don't know what's wrong. Have you changed some thing in code? It looks weird...I suggest this:

1. Place the background:#000000; under this line:

@media all {


2. If this is not working, change the template, and apply the settings from above.

LAYOUT ► PICK NEW TEMPLATE ► choose Minima (just Minima, not Black...)

But before doing this, back up your widgets:
Back up widgets

Andreea Koumoushis said...

nope, i didn't change anything..
done 1 (didn't work) and 2 (applied Minima template & the settings from above and looks exactly how it looked like after step 1)..it looks even more weird..
i hope i'm not giving you headaches

pocket said...

Andreea,

I really don't know. I've just tested it again, and it works.
You need to change your template completely. That has to work. Upload it again.
When I look at your code, I see the same style like before. Go to:
LAYOUT ► PICK NEW TEMPLATE ► choose Minima template. Confirm the deletion of widgets.

Andreea Koumoushis said...

Maybe there is something slipping from my sight, but I checked over and over again to see if I've done something by mistake, chose new template, confirmed deletion, modified what I had to modify, and still doesn't work.
Thank you anyway for your help :)

pocket said...

Wait Andreea...

I won't be able to sleep until we fix this. Try this. Replace this part:

@media handheld {
#content {
width:90%;
}


...with this:

@media handheld {
#content {
background:#000000;
width:90%;
}

...if this doesn't do the thing, we can add some background to specific elements:

#main {
width:410px;
background:#000000;
float:left;
}
#sidebar {
width:220px;
background:#000000;
float:right;
}

C'mon, we'll beat this...

Sanity said...

Ok, now the image is stretched all the way out to the side, but the 1 pic in the corner, instead of being in the corner is way off the edge of the screen....

Andreea said...

no luck at all :(

pocket said...

◄ Sanity ►,

..it's just like that. Check the other backgrounds around. Notice that they are optimized to fit the content (by width) or they are a little pictures that are set to tile (repeat across the screen). It's impossible to do this with a picture that is not created as a background. It will look different on every screen...Sorry.
Here's what I can do for you. I've resized it, and upload it to my account. Now, your turn:

1. Remove your current background. Then go to:
2. LAYOUT ► EDIT HTML ► find this in your code:

body {
background:#ffffff;

...add REPLACE it with this:

body {
background: url(http://i39.tinypic.com/2whpf0h.jpg);

...I've uploaded the pic here:
http://i39.tinypic.com/2whpf0h.jpg
..if this works for you, upload it on your account, and replace the URL's..

Keep me informed..

pocket said...

Andreea,

change of plan! I've made a pic for you:
Background for Andreea

Replace your current background with this one.

Works?

Andreea Koumoushis said...

yes, it works :) although on the right side there are more suns than on the left, but i guess i'll have to increase the black part length of the new image; is my idea good?:D

pocket said...

Yup!

Andreea Koumoushis said...

oki dokie
thanks a lot! have a nice day :)

Sanity said...

Ok, it works, I ended up having to resize the cow and then resize my banner a bit, but THAT part is done.

Sanity said...

Meant to add, thank you

pocket said...

:]

Ken Hon said...

Hey, how do I make the background picture to stretch instead of repeating? Thanks

pocket said...

Ken Hon,

you can't. There was some kind of script, but not a good one. Sorry...
:[

Ken Hon said...

owh alright, thanks. Then what size should the background image be so that it fits well and not repeat?

pocket said...

In your case, I would suggest to use a width of 1100px - 1300px...
► you can use Tinypic.com for hosting "big" images
► use background-position: top center
► and to cover the area around it (when it's displayed on a larger resolution) use the background color similar to your pic..

Ken Hon said...

you mean 1300px by 1300px ?

Ken Hon said...

owh it's alright, I got it. Thanks alot! :)

Tricia said...

Thank you so much! I always thought the custom backgrounds would be more difficult! Now I can "play!"

I do have one question...I have a background in there, but would like to get rid of the white space between the edge of my blog and the beginning of the background. What part of the code should I play with?

My link: http://kariabi.blogspot.com

pocket said...

Tricia,

..you have two options here:
1. Make your Blog area wider (I suggest this one):
Change the width
2. Or, crop the current background picture (right now, it's too wide). Crop the middle part (white) to fit your Blog content.

If you don't know how, I'll do this for you...
Just say the word.
:]

Mom in Idaho said...

question....I can't get the image to show up at all. tried everything I can see here or think of. This is what my HTML looks like now:

body {
margin:0;
color:$textcolor;
background: url(http://i92.photobucket.com/albums/l39/ryanandmarja/Untitled-1-1.jpg)no-repeat
background-attachment:fixed;
background-position:center center
font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
}

I have several versions of my background picture saved since I am not sure which one will fit best.

pocket said...

Mom in Idaho,

..everything is fine, except you're missing the closing ";" in the background line. It has to look like this:

background: url(http://i92.photobucket.com/albums/l39/ryanandmarja/Untitled-1-1.jpg)no-repeat;

Mom in Idaho said...

thanks, I fixed that and it's still not working. I made the background in photoshop. Is there something I need to know to make it work? I just did it the same way I do my digital scrapbooking.

pocket said...

Mom,

...replace this line:

background-position:center center

..with this one:

background-position:top center;

That should do it...

B34TZ said...

Hi, thanks for the in-depth instructions. However I am finding a few problems. I can get the URL code jut fine from photobucket, but when I come to insert the image in the HTML, the page turns white, with my logo the only thing visible.

This is what I see before I change anything:

body {
background:$bgcolor;
margin:0;
color:$textcolor;
font: x-small "Trebuchet MS", Trebuchet, Verdana, Sans-serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;

I am using the Minima Black layout...

Any help would be great. Thanks!

pocket said...

B34TZ,

...you just have to be careful to use the Direct Link from Photobucket, and place it properly...

body {
background:$bgcolor url(Direct Link here);

...define some style (repeat, no-repeat, fixed...), and it should be all right..

fatty gotta eat! said...

hi pocket, you have been uber helpful so far---except i now have a novice question for you.

i have added my own image and through some of the codes you posted when you were helping out Rina....so this is what i have (but with my own image)

Hey Rina....You have to do 2 things:
1. Change the background-repeat line into this:
background-repeat:repeat-x;

2. Find the outer-wrapper, and add some background to it..It should look like this:
#outer-wrapper {
background:#ffffff;

Preview/Save/Smile!

mmmk. so i'm using the minima lefty template. all i want to do is now change the background color (b/c my image is now on the left side) to a light blue, but for some reason when i go to the fonts and colors, the background color is the only thing that refuses to change (it remains white). so how can i do this? also...if i was interested in using a pattern from squidfingers as my background instead (now this is still keeping the image that i have on the left), how do i go about doing that?

thanks!

pocket said...

fatty,

locate the line where you've placed the image:

background:$bgcolor url(IMAGE URL HERE);

..and replace the $bgcolor with any hex color you want. Here's the example for black:

background:#000000 url(IMAGE URL HERE);

...choose the color you like..

Bello Velo said...

hi,
I am trying to put a border around my blog and need some help. I am trying to do it similar to this http://www.neo2.es/blog/

I have created the top middle and bottom graphics but they are not connecting.

Thanks

Jennifer said...

So I'm trying to put a background on my blog and I've loaded the file into Photobucket but when I set the background url the image is huge -- so you can only see the center column, not the whole image.

Thanks for your help!

pocket said...

Jennifer,

..you'll have to resize the picture to make it fit.
Or make your Blog wider...
:]

vibi said...

I succeeded in changing my background many times for different types of images. A while after, I changed a few other things on my blog: added a menubar, a second sidebar, etc. Everything worked well, until I lost the ability to change my background, for a reason I can't explain. Everything just dissapeared. I went to an original Minima test blog to recuperate the original script for the backbroung (in body), pasted it in but still, no could do. Even through regular Blogger's "Fonts & Colors" settings page, nothing works. Now, the strange thing is if I change the HTML variable definitions settings to a different background color number, it shows on the "Fonts & Colors" settings page, but not on the page itself!!! (the little color squares you choose from, changes color but not the actual blog page). Am I making sense here? Can you think of something that could have been done that would have totaly screwed my ability to change backgrounds? Do you have a suggestion on how I could fix this?

pocket said...

vibi,

...this can (will) happen if you change something in your HTML code regarding the background.
If you delete (or change) the color style in body {, you'll block the default background changer in Fonts and colors...

Check you background settings under body { in LAYOUT ► EDIT HTML, and paste them here...

Ok?

Anonymous said...

When I put the background my articles are transparent , how can i change this please , thank you :)

Sam Sinister said...

Here's the url of my blog:
http://artlessnonculture.blogspot.com/

I already changed the background image to a crinkled paper image. All the text shows up fine; what my issue is that I can't seem to change the background color for the sidebar. it just dosn't show up, maybe it's hidden underneath the background image for the entire blog. What do I do?

Nolwe said...

Just want to say thank you :) All my doubts are gone thanks to you. I'm bookmarking you and giving the URL to my friend bloggers. :)

Shannon Simmons said...

Hi! So I really appreciate your blog...I am new to the process of creating your own background. I am a photographer & artist though & would like to use my own things. I followed your instructions on using a direct link from photobucket, but the picture isnt sizing correctly. I have read through a lot of posts, but would appreciate your assistance. My blog is www.theadventuresofshannon.blogspot.com. Thanks, Shannon

Anonymous said...

why i keep pasting all those code u all state but my blogger said this (We were unable to save your template ). i have uploaded the picture into photobucket... care to help me thanks

body {
margin: 0;
text-align: center;
min-width: 760px;
background: #ce436e url(URL WEBSITE);
background-repeat:repeat-x;
background-position: top center;
color: $textColor;
font-size: small;
}

Anonymous said...

sorry to add on ... those template are under xml format... ur command is it for html only??

Briar Rose said...

Holy crap... I went to five different websites to figure out why I couldn't get my background image to show up, and all any of them did was screw it up worse. Your instructions were the best-now I don't feel like killing my site (lol). Thanks!

-Melissa

Pepe said...

I have spent hours trying to get some information but I learned more in this blog than all the others put together. Tomorrow I will try again.
Thanks for everything you do for everyone.

varquazar said...

hello there,
After going through all the above comments/requests and dumbhead-hails...and to it's contrary, the way u've been (calm, patient, tolerating, sweet, kind, gentle & above all...always positive) is simply superb...d00d you have nerves of steel.
... Requesting to Let me speak my heart out...
..............................................
I wanted to figure out that is there at least one guy who just types up to fully appreciate what you have been doing for all of us solution seekers...but I did not find a single.
So I decided to salvage some 'worth' which you DESERVE...that's why I typed up...
..............................................
simply outstanding pocket...simply outstanding...
please visit my blog...and if you have time on hands (which I doubt..as I find you busy helping others[for the good]...incessantly)

http://designofobia.blogspot.com/

bye for now...
thanks to be what you are. :-)

ginaa said...

Thank you so much for this! It really helped! :-D
Love Gina

crepuscule said...

THANXXXXX! really...I was desperate...until I found this!!


=D

-KeO- said...

Cool~!!! nice! thx~

Jairus said...

thank you very much for the links!

EllyAli said...

I tried, it works but my main wrapper simply blends with the background instead.The pic is mostly black and the font is black so it looks distorted.
How can i change so that it appears that the background picture acts as a border.
How can I change my main wrapper colour, it is not customisable under "font and colours" tab.
Please e-mail me litmibimi@yahoo.com
I might forget to go back to this page. I admit i just learn about css/html/xml yesterday but i know this can be done with your guidance.Please help

TAN YI JING, SAM, RU HUI said...

hey, I think you're from America or something, But I am from Singapore. my blog is ggfwends08.blogspot.com, And i work really hard on it, please visit it and tell me what I can work on.

Linn said...

Hi!
Your page is soooo helpful. Although, I have one question I was hoping you could find the time to help me with... My articles are transparent and I dont want them to be... Where do I fix that...?

photograph background removal said...

Thanks for sharing!!!

Anonymous said...

thanks for the tips.this would help all the beginners out there.

____________________________
website design

Sayuri said...

Hello~ :)

Thanks for the tutorial. I tried it already, but when I put this

body {
background:#000000 url(http://s240.photobucket.com/albums/ff220/piano511/BACK%20GROUND/?action=view&current=untitled11-2.jpg) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;

it end up my whole background is black? How? Thanks~ :) Can you reply to my email? (irahanna@gmail.com)? Thanks~

Charlotte A Hannaway said...

I cant't get the plain white center, the background covers the whole blog. :(

Ana B said...

I have nobody else to ask and I just can't get this to work. You seem to be very helpful...So my blog is http://eco-babyz.com, you can take a look. What I am trying to do is add a fixed size background (no repeat). I made it in Photoshop, it is extremely simple. It is just a white background in the middle (960 pixels wide) and dark brown on either side. I uploaded it to Photobucket and followed all your directions but it shows up smaller, it looks like it shrinks to about a total of 960 pixels wide when the actual total is 1920 pixels. I don't understand why it is not working. Here is the code I use:
body {
background:#000000 url(http://i980.photobucket.com/albums/ae284/ecoblogz/Brownblogbackground.gif) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;
}
You can email me ecoblogz at gmaildotcom

pocket said...

Sayuri,

delete the color part from background:

#000000

...or change it to whatever hex color you'd like (white is #FFFFFF)

And if you want larger image, try using tinypic.com for hosting your images. It's the best service...

Smile!

pocket said...

Ana B,

...you too. Use tinypic.com for hosting your images (especially the larger ones). This way, they won't get cropped.

You have more info in this article:
Uploading pics in Blogger

Smile!

Kundan Debnath said...

Hi Pocket,

Can you help me out to make my blog look like the below mentioned blog-

http://keepingupwiththesimmons.blogspot.com/

I don't want to be copy cat but I just wan2 know the technique of creating the kind of post-end graphic and post-begin 3 hearts. Actually I like the whole thing without the background colour. Can you just make me explain the codes for the site.

Paulene said...

Hi pocket,

I'm having some troubles here.It's a lil urgent,hope you can reply asap.

So this is the code I applied to the blog..

background:#696969 url(http://1.bp.blogspot.com/_PQQqUtSbP4Q/SzmSaxkmVBI/AAAAAAAABQs/Vni2BUYpiJ4/s1600/body_main.png) ;
background-repeat:repeat-y;
background-attachment:fixed;
background-position:top center;

the blog - http://msa-templates.blogspot.com/

Let's say I have two textures,I've already applied one,which is already written in the url. at the same time,I want the second texture on both sides in the blog.I have tried replacing (#696969) with the second url,but it doesn't work at all.Is there any way to do so?

pocket said...

Paulene,

...it won't work that way...:]

#696969 represents the color of the background, and "url" will apply one of your chosen pics.

Just like the situation you have now....

But, you can try this:

1. Apply the texture you'd like for your "sides" here:

body {

2. Then try to add your other background here:

#outer-wrapper {
background: url(http://i257.photobucket.com/albums/hh207/msa_rmit/backgroundtrans.png);

It should work....maybe you'll have to crop you outer-wrapper background a bit, or adjust some margins for text....

Try, and see what happens...

Paulene said...

Well,it looks like it's working now,but one more questions...

1. If I wanna use a picture as a background,how can I stretch the image to fit the screen? Cuz currently my pic (1024X768) stays in the center and I'm not sure what to write to expand it. ><"

sorry for any troubles caused!

pocket said...

Paulene,

replace this line:

background-repeat:no-repeat;

..with this one:

background-repeat:repeat;

Smile!

Paulene said...

Nope,still not working,it looks like it's tiled up.

pocket said...

Paulene,

my mistake. Do this.

Delete this entire line:

background-repeat:no-repeat;

That should set the default vlaue for picture-repeat property (which is horizontal and vertical tile)....

Ok?

Paulene said...

Er..still not working.I think you might have misunderstood what I was saying.Can you give me your email address so that I can show you how I want it to be like?

pocket said...

Paulene,

locate this code:

body {
background:#1E1E1E url(http://i257.photobucket.com/albums/hh207/msa_rmit/background.png) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;


...and DELETE unnecessary lines, so it will look like this:

body {
background:#1E1E1E url(http://i257.photobucket.com/albums/hh207/msa_rmit/background.png);


I think I understand what you want. Try this. If it's bogus, here's the email:

pocket.ideas AT gmail DOT com

Ryan and Laura said...

Hi Pocket,

When I add my background it doesn't center on the page. The left side is where I want it, but the right side is in the sidebar. How can I get the right side to move over? This is what my HTML looks like...

body {
background:url(http://i835.photobucket.com/albums/zz272/LRKRJ09/Tester-p009.jpg);
background-repeat:repeat-y;
background-attachment:fixed;
background-position:center
margin:0;
color:$textcolor;
font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;

Thanks, Laura
jamison-story.blogspot.com

pocket said...

Laura,

you're missing the little ";" symbol. Change this line:

background-position:center

...into this:

background-position:center;

Other option is to remove that entire line.

Smile!

Ryan and Laura said...

Thanks for the QUICK response! When I add the line as 'background-position:center;' both sides go into the sidebar. When I totally delete the line, the left side goes where I want it, but the right side goes into the side bar again.

pocket said...

Ryan and Laura,

the background pic you're using is smaller than your Blog width....

The white space in the picture has to be 750px wide, so it fits to your Blog perfectly...

So, you need to re-size the pic. Any graphic editor will do this....

ok?

slate-one said...

Hi Pocket:

I've read all of your hints & have read everybody's comments and just can't seem to get it right.

I'm trying to add opacity to my blog (http://realtyonetest.blogspot.com/), like the Feather template at: http://blogspottemplates.blogspot.com/ (about half way down)

I downloaded his template and just tried to change the picture (with tiny url), but it only repeats the background, it won't stretch it across the page.

I then just used the minimum template and tried all of your suggestions...but again, the background image only REPEATS.

I am using minima, 2 col (just like "feather"). The only difference I can see is he has body wrapper added:

#body-wrapper {
background-image:url('http://replace.photobucket.com/albums/replace/feather-bg.jpg');
background-repeat:no-repeat;
background-attachment:fixed;

Also, I don't want to use the opaqueness in my left column because I am adding pictures of homes and they need to be clear and crisp.

So, currently, I have used the opacity in my header wrapper (which I like) and my sidebar wrapper..which I don't like.

I really want the sidebar to look more like the "feather" opaqueness.

Any suggestions?

Thanks so much.

pocket said...

slate-one,

just add the opacity to the wrapper you want..

To stop background from repeatinh, just add the line:

background-repeat:no-repeat;

You CAN'T stretch background. You can use a large picture, though.

slate-one said...

OK..thanks. :)

Addicted 2 Scraps said...

what size should I make the background to fit correctly????

pocket said...

Addicted 2 Scraps,

this depends of the width of your template, and what kind of background you have.

Please, read the tutorial carefully. You'll find a lot of info there...

Smile!

Sa Toya said...

hi lurve your blog!
I'm trying to make a new template for my blog.
I'm new to blogging and templates and am using your tips :D

Using minima I've made it 3 columns but each colmn is separate from the other so the background is seen btween each one.

How do I make one solid background for my side bars and posts?

Cheers

Hope I made sense?!

Emily said...

I made a background in Photoshop and I want to use it on the sides of my blog. I can't figure out what size to make it because I like the wider margins than all of the free templates out there. Right now all I can do is put scrapbook paper on the sides. But I want to be able to add drop shadows or even do a curved post area. And then add my own header to match the sides. Is this the tutorial for me?
I also like how your site has the post area seperated from the top and bottom of the blog. Is that possible too?

Rachel said...

Hi there!
I've scoured your tutorial and didn't seem to find a solution to my background problem. :) I followed the instructions found at http://www.kevinandamanda.com/whatsnew/tutorials/how-to-make-a-scrapbook-blog-background.html

to the letter (using Gimp) and each time I insert my BG link my BG is huge. I've resized over and over, but still nothing is working. When I reduce the zoom on my monitor to 50%, however, I can see my entire image. I'm wondering if this is that "depends on your monitor size" issues.

Here's the link to my blog. Please pardon my mess, i'm working out the kinks! :)

http://rachelpool-laughophelia.blogspot.com/

Thanks for your time and any input! Much appreciated!

Rachel

sleepingDOTlilly@yahooDOTcom

pocket said...

Rachel,

your background image looks fine on my side....
Still having troubles?

Rachel said...

Sorry, I posted a second ago and forgot my sister applied a BG from another site. I've changed it back to the test background i created in Gimp. :)

Bubbles Make Him Smile said...

Reference: www.bubblesmakehimsmile.com
I added a background image and have it hugging on the left side. Is their a way to place a background colour to replace the white on the middle/right side of the page and/or a graphic?

Thanks!

Bubbles Make Him Smile said...

I figured it out for myself.
My new question is that on the bottom of my page the footer area doesnt keep up with the background and is just a bright grey colour?

daves said...

Thanks For posting . Its Really nice . Keep update a more article.
Application migration

downshiftingnow said...

Hi, thanks a million for your very clear tutorials, the best I've found so far.

Question: I would like to have a background similar to yours, where the black area has rounded corners on the top and the bottom of it. I can make a picture, upload it etc... but how do you make it stretch and expand accoding to the lenght of the page?

Thanks for your help!

Coco loves vintage said...

Hi pocket, thanks for all your help so far!!! you have helped me change my blogs in lots of ways:) I have hit a problem! the same problem as vibi's (above-ish)
I have a new blog that i have not yet tweaked in anyway, the first thing I decided to do was make a background (that repeats all over the screen) fine no problems, works perfectly! but when I have tried to do it for my other blog and my sisters blog, nothing happened, I could not even change the color, these are older blogs that have been tweaked in various ways, please help!!! before I go insane!
The blog the background works:
http://cocolovesvintageshop.blogspot.com/
does'nt work:
http://cocolovesvintage.blogspot.com/
doesn't work:
http://signatureballoonswigan.blogspot.com/
thanks, Amanda

pocket said...

Hey Coco...

Strange. You've tried to add background same way you did with your "working-background" blog?
Try again. Place the same background line in the "non-working ones":

background:url(http://i961.photobucket.com/albums/ae92/sidbling/natfl022.jpg);

This HAS to produce the background image. There's no other option. Just make sure you have only ONE background line.

Give it a try.

:|

Coco loves vintage said...

Hi, thanks for your speedy reply, I have tried it several times and it just wont appear:( very strange, I can get a background via a html/java script widget & getting the code from eg shabby blogs, but the background I want is from a tile image on my computer. I am wondering if something has happened whilst I have been customising my blog in other ways??? I have been working on my sisters blog this week & the same thing has happened there too, it has me stumped!!!

Signature Balloons said...

Hello again, I have done it now, yippee! instead I managed to fathom the code to make my own HTML widget, that seems to have worked :) but if you find out the answer to the original problem, please let me know, thanks!!! keep up the good work :) your blog has been a god send x

Signature Balloons said...

That was coco loves vintage, if you hadn't already guessed, didn't sign out of my sis's blog.

Kei said...

body {
background:#000000 url(http://i853.photobucket.com/albums/ab96/nekoxinh29/suju_wallpaper_by_XxOneLove13xX.jpg) ;
background-repeat:no-repeat;
background-attachment:fixed;
background-position:top center;

here's mine but i can't see it appear in my page..can you help me pls? thank alot

s said...

Hi,

My website background changes position when it is in different resolution. What can be done to fix this problem? The menu buttons also facing the same problem. here is the address: http://wyeshen.blogspot.com/

body {


// background:$bgcolor;


background-image: url(http://lh4.ggpht.com/_2TPbZ2O-lHA/S_kr3qaUelI/AAAAAAAAAKw/v1JcR2rQHwo/weishen2.png);
background-repeat:no-repeat;
background-position:center bottom;
background-attachment: fixed;

margin:0px auto;
color:$textcolor;


font:x-small Georgia Serif;
font-size/* */:/**/small;
font-size: /**/small;
text-align: center;
}

Sarah Jane said...

Hi I am new to blogging and would like to add the background I designed to my blog.
Here is my blog http://bluerosescraps.blogspot.com/ I managed to add the blinkie I designed and my header (even though think miscalculated the size on this). But I cant seem to get my background to go on. I tried following your instructions but I must be going wrong somewhere. My image I want is here http://s1017.photobucket.com/albums/af294/callumsmum2003/My%20Blog%20Designs/?action=view&current=Blogbackground-1-1.gif&t=1274886857871
So how do I add it, pls help

pocket said...

Sarah Jane....

first, use Tinypic.com to upload the picture in it's original width (photobucket shrinks it).

Then, use the DIRECT LINK to apply it in your code.

Direct Link of your curren Photobucket image is this:
http://i1017.photobucket.com/albums/af294/callumsmum2003/My%20Blog%20Designs/Blogbackground-1-1.gif

Smile!

pocket said...

Hey s,

first, try removing this // from this line:

background:$bgcolor;

Sarah Jane said...

Thank you it worked this time :)

s said...

hi pocket. It's still the same. Need help here

Amanina said...

hello. thanks. this really help me. :)

Jess said...

ahhh... great blog!!

Have followed your instructions down to the letter, and have got A background up, but it seems to be static rather than moving with text etc. I'm working on a big screen, so don't know if that's the problem, but CAN YOU HELP???

I've added the cream middl bit that sits under the text, but would be happy to remove it if blogspot lets me keep their middle bit there and my background floats behind it - just not 100% on the html of this - can you help??

Thanks a bunch!

Désirée said...

hey thank you so much! Thanks to you I could change a lot on my blog. But I still have one problem left. It depends on which computer I use to see my whole background. What size do we have to use so that everyone can see the background?

and how is it possible center the posts.I mean to make a think a margin on the left! If you have time it would be so nice If you could help me and if you don't thanks for the help you did already with the blog!
xxDési


http://www.losingforfashion.blogspot.com/

Oopsyocto155 said...

That makes no sense and it doesn't work...you never actually said what to do with the code...that is really not helpful.

pocket said...

Oopsyocto155,

you have "Continue reading" links inside of the article for each example.
Click on it, and the explanation will collapse (with the code included).

Take it easy....

Smile!

Desiree said...

Just used this tutorial to add a background to my blog and I'm so happy! Thank you so much for making it so easy!

Keep up the good work!

tessa said...

i have a picture .
i want the picture are left and rigt only .
i don't want to put the picture in center .

how could i do ?

xXOntheBrightsideXx said...

On my blogspot, when I go to the dashboard and follow the steps, etc. There is to tab titled: Layout

mbt shoes said...

Do you like MBT shoes online MBT chapa buy it MBT chapa shoes with MBT lami free MBT lami shoes shipping MBT kaya over MBT kaya shoes us,we MBT M.Walk sell MBT m walk shoes on line mbt men shoes for mbt women shoes and vibram five fingers sale vibram five fingers sale is our discount vibram five fingers best cheap vibram five fingers choice cheap MBT chapa shoes thank cheap MBT lami to cheap MBT lami shoes see cheap MBT kaya it cheap MBT kaya shoes you can cheap MBT M.Walk go cheap MBT m walk shoes by cheap mbt men shoes click cheap mbt women shoes

pan de lees said...

dear friend...i have made some blogs and i allways like to put a photo as a template...so, i put a summer photo in my blog but in some monitors (usualy wide) i see the photo smaller and space around...how can i do it so that it will look fullscreen to all monitors? This is my blog
http://www.egioparalia.blogspot.com/ and if you can, see it in different monitors and sizes

thank you for the waste of your time

Say it...

Related Posts with Thumbnails