I'll be honest with you: designing a complete blog template is not an easy task. It certainly isn't a quick one!
Throughout the whole Blogger Template Design series, I will take you step by step through the entire process I use when designing a Blogger template, from the initial plans and considerations right through to the final tweaks which will make the template your own.
Altogether, I imagine this series will become quite long, so as a taster of what is to come, I'm offering you A Cheats' Guide to Customizing Blogger templates: a few quick tips which can help you transform your blog from this:
to this...
in as little as an hour!
For this example, I'm going to use the default Minima template provided by Blogger. However, the examples used here could easily apply to any blog template.
In total, we are going to make three major changes to the overall appearance of the blog:
- A new header image
- A new background pattern
- A plain colored background to the main content of the blog
None of these changes are particularly technical (I'll cover such aspects in later installments of this series). Instead these techniques will be easy to learn and use, even for absolute beginners!
Before you begin!
Be sure to make a complete backup of your existing blog template, just in case you make a mistake or would prefer to revert back to this at a later time.
To do this, go to Template>Edit HTML and click on the "Download Full Template" link near the top of the page. Save the XML file to your computer, and ensure you are able to access this later.
Making a new header for your blog
In my opinion, one of the simplest and best customizations you could make for your blog is to customize your header. In this part, I will offer you a quick and easy way to make your own clickable header image.
Finding the width of the header
Before creating a header image, we need to know the width of the header section in the existing Blogger template. This prevents the header image from being clipped or malformed when it appears in the completed design.
To find the width the header image should be, go to Layout>Edit HTML in your Blogger dashboard, and look for the following line:
#header-wrapper {Just below this line, you should see the CSS statement for the overall width of the header. In the default Minima template, this appears as follows:
#header-wrapper {From this information, I know I need to make my header image 660 pixels wide. This may differ for your own template, so be sure to check the width of the header wrapper in your template code to be sure you have the correct width.
width:660px;
margin:0 auto 10px;
border:1px solid $bordercolor;
}
The height of your completed header image does not matter. You can make this as tall or as short as you like, though I would advise that header images taller than 300px prevent any blog content being seen beneath it in some internet browsers.
Making your header image
Those of you who are experienced with image creation and editing may now be racing off to create their very own unique header image using their header dimensions. For those of you who are not so familiar with CorelDraw or Photoshop, an alternative would be to use a free header banner and adapt this to your needs.
In the example above, I downloaded a free vector header from BitBox and resized this to 660px wide using GiMP (a free image program sililar to Photoshop, but without the price tag!). Here is the resulting image (click on the image for a full sized view).
For this "cheats' guide", I would advise you to add your blog's title or logo into your header image. This is because there may be problems when using your image as a background behind the title and description (I will explain this fully in a later post).
Again using GiMP, I added some test to my header image, and here is the finished result, saved in GIF format:
Adding your header image to your blog
This quick method of creating a blog header is the simplest one of all. Just go to Template>Page Elements in your Blogger dashboard, and click on the Header widget near the top of the page:
On the popup screen, you will see options for using your own header image. Select the radio button to upload an image from your computer and locate this using the "browse" button. Then check the radio selection which says "Use instead of title and description. Finally save your settings.
Using this method, your image will be hosted by Blogger, and will appear instead of your regular title and description, like this:
Note: in the Minima Template there is a glitch in the CSS which can make the header appear slightly misaligned. This is easily solved by changing the margin of the #header statement from this:
#header {To this
margin: 5px;
border: 1px solid $bordercolor;
text-align: center;
color:$pagetitlecolor;
}
#header {
margin: 0;
border: 1px solid $bordercolor;
text-align: center;
color:$pagetitlecolor;
}
By now, you should have your brand new header image in place of your default textual header. This was probably the trickiest part of "The Cheats' Guide", so now we'll get on with something a little easier to achieve.
Using a background image
For my demonstration template, I decided to use a tiled floral background image which blends well with the colors in the header. There is a wonderful selection of free tileable background images available for download at SquidFingers (in fact, this selection is among the best I've ever seen!), though a Google search for tileable background images will bring you some alternative downloads to try.
Choose your background image
The first step to using a background image for your blog is to find one which you like. I chose this pattern from Squidfingers, though you could choose any image you prefer. You will need to save the background image to your computer as we will be using this very soon.
Upload your image to the web
In order to use a background image for your blog, you will need to upload this somewhere online. One method is to upload this to Photobucket, or a similar free image hosting service. But here is a trick to help you host your images with Blogger for free!
Simply create a new post and upload your image as normal. But don't publish the post, just save this as a draft which you can delete later.
Now preview your draft post. You should see your image displayed in the preview page. Right click this image and view the properties. From here, you should be able to extract the URL of where this image is hosted. Copy this URL to your clipboard or Notepad so you can use this to reference your background image in the template's HTML code.
Now you can safely delete this draft. Choose NOT to delete the image when prompted, otherwise you will be unable to use this URL for referencing your background image.
Alternatively if you choose to upload your background image to Photobucket (or similar hosting service), ensure you have copied the URL of your image.
Adding the background to your template code
We will now need to edit a small part of your template's HTML code to add this image to the background. So go to Template>Edit HTML in your blogger dashboard, and look for the following lines:
body {We need to add the URL of your background image to the "background" statement using the following format:
background:$bgcolor;
url(the_url_of_your_image)In my demonstration template, the additional code appears like this:
body { background:$bgcolor url(http://1.bp.blogspot.com/_xn2gmPb9TfM/R4TGdeDdP4I/AAAAAAAAArY/RP5IQy-eABA/s1600-h/pattern_140.gif);Of course your own URL will be different. Just be sure to follow the same format, and ensure that the semi-colon (;) appears at the end of the statement.
Now preview your blog to see the changes. It may look something like this:
If you are happy with the background, you can then save your template for us to go on to the next step. However, if you prefer not to use this, you can simply click the "clear edits" button and start over again.
Now in my demonstration template, you will notice that the text is barely visible against the patterned background. This leads me to the final customization of this tutorial: changing the background color of the main blog content.
Adding a background color to the main section of the blog
One of the best ways to draw attention to the content of your blog is to place this against a flat, contrasting color. This draws the eyes to the 'meat and potatoes of your blog': your blog posts. So in addition to the background image, we need to place the main content of the blog against a complementary color which will make it easier to read.
We don't need to use any images at all for this, and compared to the previous two customizations this is a minor tweak.
To add this colored backdrop for your blog content, simply locate this line in your template's HTML code:
#outer-wrapper {In some templates, this may be "#outer-wrap" instead. Directly below this line, add the following line of code:
background: #ffffff;This line adds a white background to the main content of your blog (both the blog posts and the sidebar). You can easily use a different color if you prefer by changing the hex value for white (#ffffff) to a different hex value instead. An easy way to find the correct hex value for your chosen color is to use the web color calculator in the Tools section of this site.
In my demonstration template, I opted to use a light blue background (#E3F2FB) to complement the background image. Here is how the whole section of code appears in my template code:
#outer-wrapper {
background: #E3F2FB;
width: 660px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont;
}
To make the foreground stand out even more from the background image, I also added a border to the left and right hand sides of the outer wrapper, which can be achieved by adding the line in red to the outer-wrapper style statement:
#outer-wrapper {
background: #E3F2FB;
border-left: 2px solid #cccccc;
border-right: 2px solid #cccccc;
width: 660px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont;
}
And here is the finished result:
Final adjustments...
Once these main customizations are complete, you may wish to change some of your fonts and colors to better match your new design. I changed the post title colors, the link colors and the fonts to end up with my final design:
These simple customizations can easily make a default template into something unique to you!
These three customizations are the most noticeable and easily achieved customizations you can make.
You may also be interested to read some of my earlier tutorials which can help you add to these basic customizations and begin to edit your template even more:
- Add three columns to your footer section
- Create navigation buttons
- More ways to customize your header
- More ways to use background images
Coming soon...
In the forthcoming posts in the Blogger Template Design series, I will expand on these basic customizations and guide you through the more advanced techniques of template design. Each post will fully explain one particular technique, building up to a complete step-by-step guide.
The next post of this series will explain the preparations and tools required for creating your own complete and unique Blogger template.
To ensure you are updated about the new posts in this series (plus other Blogger news), be sure to subscribe to the blog feed.
As always, I appreciate your comments and opinions about my posts. And if you have used this Cheats' Guide to create a more personal template of your own, please do leave a link to your blog so we can take a look at the final results!











*Sigh* I suppose this means I can't make it work with a "stretch" template. That's been one of my problems all along...
ReplyDeleteThanks for your comment, Scott, You've made me realize that I ought to include some more information about "stretch" templates into the forthcoming posts, something I hadn't realized before.
ReplyDeleteIt should still be possible to customize your background if you would like to try, though the header may be difficult as your current header is designed to stretch to fir the window of the viewer's browser. If there is anything particular you would like to do to your stretch template, do send me an email and I;ll try to offer some advice. In the meantime, you could always experiment with a text blog. Perhaps I can interest you in designing a completely new template when the more advanced tutorials in this series are released?
Best wishes,
Amanda
Amanda,
ReplyDeleteI'm using your Cool Blue 2.0 template, and am having trouble uploading a custom header. The formatting is coming out all screwed up. Any help would be appreciated.
As always, great site, very informative, especially for us web novices.
Thanks,
Jon
i have already used that but not for blogger own templates,other ready templates.
ReplyDeleteHey there, Amanda! I'm the lady that was buggin ya about a food themed template a while back for a recipe blog that my girlfriends and I are using. Well, I found one that I think I really like. Now I'm trying to re-design my personal blog. I used one of your templates and then changed up the back ground and the header. I think it looks pretty good but I can't seem to figure out a couple of things. I want to change the date font size. I've tried adjusting it in the html and nothing happens. Also, I use firefox and my blog looks fine. But to my friends who use IE it looks messed up. Can you help? Thanks, Steph.
ReplyDeleteHello Steph,
ReplyDeleteI'm glad you found a template you liked, your blog looks great!
The date font shouldn;t be too much of a problem. Look for this section in your blog template:
.date-header {
margin-top: 0;
font: normal .8em Tahoma, Arial, Helvetica, sans-serif;
color: #999999;
}
The bit highlighted in bold controls the font height (in relation to the rest of the text on the page). Currently this is set to 0.8 (80%) of the regular font size. You could incewase it to .9em or even 1em to make it bigger. Any larger than this would make it larger than the regular text size.
I did look at your blog in both IE and Firefox on my computer, but didn't see any noticeable difference in the layout. Which version of IE causes problems? (I'm using IE6). You could check out the template by using www.browsershots.org (a free service) to see how your blog looks in a great variety of different browsers. Or if you could let me know the problems in more detail, I'll see if I can offer more help with this.
Best wishes,
Amanda
For Jon Hyman,
ReplyDeleteThe Cool Blue template uses some padding to the left of the header where the logo would usually appear. Does your uploaded image seem pushed to the right, or is there some other problem?
If you can send me your template, I could make some adjustments for you without disturbing your widgets. Or just send me an email and I'll let you know how to fix this yourself through the template.
Hope this helps!
Amanda
I think I corrected the outcome differences in the browsers. As for the font this is what I found in my code:
ReplyDeleteh5.date-header {
margin:0 0 5px;
font: $dateHeaderFont;
color:$dateHeaderColor;
}
What do I do to that?
Dear Amanda,
ReplyDeleteI have been struggling for weeks to unfix the header fix that blogger did to my image. I have tried all sorts of things, but it just will not stay in the center and in the correct proportions.
I am a complete computer idiot, and I keep trying fixes. Nothing has worked. Can you help? Please?
Thank you,
Jen
For Jen:
ReplyDeleteWhich template are you using? If it helps, you can send me your template and the header image, then I'll test in a test blog to see how best this can be achieved.
For Steph:
Sorry I was looking at your other blog when I gave you that code!
The problem with your template is that the date header is defined as H2 in the code, but as H5 in the style section.
To fix this easily, find this phrase in your template (you'll need to expand the widget templates):
h2 class='date-header'
Change this phrase to read this instead:
h5 class='date-header'
This should make the date appear much smaller, and allow you to change the font size and type in the fonts and colors section of your dashboard.
Hope this helps, but feel free to email me if you're still having problems :)
Worked great! You're the best!
ReplyDeleteSo will you humor me for one more question? Where it says 'posted by' and gives the date - that box is gray and I'd really like it to be black with white or gray font. How do I change that? I really have searched in the html but can find where it needs to be changed. Gracias!
ReplyDeletewow, a very briefly tutor i found.
ReplyDeletemay i blog your post?
my question is, once we finished pimping a template and the new one is definitely different with the original, may we name and claim it as our own opus? or we have to keep the link of first designer author?
thanks.
This comment has been removed by the author.
ReplyDeleteFor Steph:
ReplyDeleteThat's no problem! Look for this section of c0de in the style section of your template:
.post-footer {
background: #ded;
margin:0;
padding:2px 14px 2px 29px;
border:1px dotted #bbbbbb;
border-width:1px;
font-size:100%;
line-height:1.5em;
color: #000000;
}
This is what controls the appearance of the post-footer section box.
Simply change the background to this:
background: #000;
and the color to this:
color: #fff;
Which will create a black background with white text. Hope this helps!
For Tukang:
ReplyDeleteThis is a difficult question to answer on behalf of blog template designers in general, though I will answer as best as I can.
For templates which I have designed personally, I say that a link back to my site is appreciated but not required. So if someone customizes a template I originally created to the extent where it becomes their own design, they are free to remove any link or credit to me, and replace the credit with their own.
For other third party templates, I would check with the original author before removing their credits. Some blog designers do require a link or credit to them, regardless of how the template has been customized by the user, and will only offer the for free if this credit is attached.
Most template designers would be happy to discuss this policy if you send an email or comment linking to your customized design (and many would in fact be thrilled to see how you have used their template).
I hope this information is helpful to you :)
Best wishes,
Amanda
you're awesome!! some of the text was still blue so I figured that out and now it's PERFECT! thanks so much!
ReplyDeleteDear Amanda,
ReplyDeleteFirst of all I would like to say that I am so grateful and happy to find your site. It has so many information, tips and tricks which is very useful to new blogger like me...I have been searching for site which can help me...
To be frank I am not so good in html and all this while I am using WYSIWYG software (Front Page), for my personal website, so when I start blooging 2 months ago I am like lost.
So, for a beginner like me… in your opinion, where should I start or what are the basic knowledge that I should learn first for me to catch up with all your post…
Thanks,
Best regards,
Pak Maeh
Amanda,
ReplyDeleteYou are awesome. I just started my blog I have only posted one thing and I have managed to customize it a little with your instructions. You said to leave our link so if you want to see what I did with your directions here is my link.
www.watchmansteph.blogspot.com
Thank you I look forward to learning more.
Steph
This post will be very useful to me!!!
ReplyDeleteI have a non-clicable header on my blog :(
but with your help I will try to fix this ;)
hope it results!
This post will be very useful to me!!!
ReplyDeleteI have a non-clicable header on my blog :(
but with your help I will try to fix this ;)
hope it results!
For Steph: I'm glad this worked so well for you :)
ReplyDeleteFor Pak Maeh: I do try to make tutorials easy to understand, so it may be useful for you to read through previous posts, or use the search function to find tutorials of interest to you. Also I'm working through the Blogger template design series step-by-step, so if you continue reading, I hope you will find these articles informative and useful to your needs.
However, I would like to expand on this by featuring your comment in the forthcoming "Readers' Questions" feature, where I will also provide some useful links for bloggers who are beginning to learn the basics of CSS and HTML for their blogs. Would this be okay with you?
Dear Amanda,
ReplyDeleteIt is a great pleasure for me to inform you I managed to modified my blog from black minima to a new look - three columns blog... (http://malaysianewspaperonline.blogspot.com) with custom header picture based on your first two posts in this series.. as for your new post the tools.. I used Adobe Photoshop to make the header image...
Frankly speaking I never imagine I can modified my blog template on my own.. Thank you very much for your posts which I learned a lot of things... I am looking forward for your new post in this series…. As for including my comments in the “Readers Comment” I have no objection at all…
Looking forward or your new post in this series…
Best regards,
Pak Maeh
Thank you, thank you, thank you! Your instructions were a life (& sanity) saver! Woohoo!
ReplyDeleteFor Pak Maeh: Thank you for your lovely comments and your permission for the post. I am in progress with the "Reader's Questions" post now, which should be posted in the next day or so. Hope this will be useful for you!
ReplyDeleteFor Mr. McGregor's Daughter: I'm really happy this worked well for you. Thanks for stopping by!
Your directions are so simple and easy! But I am *still having the hardest time getting a background on my page. I am using minima white--and clearly I am making a mistake. I am trying it for this site: www.girlfriendsyoga.com
ReplyDeleteOk...I figured it out. For my template (minima white) to add the background image I had to put:
ReplyDeletebody { background-image: url(url_of_your_picture);
Then it worked and I followed the rest of the directions you gave.
Thanks a bunch!
I am having a hard time getting a background on my page as well. I am using a template called "washed denim. i changed the html according to your directions, and nothing. i tried the variation shown in the comment above me, still nothing. if you can help, it's appreciated!
ReplyDeleteGreat series Amanda. I am learning so much from it. Everything seems to be working except the background picture. What am I doing wrong? I cannot get it to appear at http://testrgtc.blogspot.com/
ReplyDeleteJust figured it out by reading the comments above me.
ReplyDeleteHoly Moly, Amanda!! I found you through another blog...and was intrigued! I just HAD to get my blog overhauled. It took me ALL day, not an hour, but it's mostly b/c I am unfamiliar with GIMP...I finally figured it all out and I am SUPER pleased with everything!!
ReplyDeleteThank you for sharing so much wonderful info and step by step instructions!
For AdrianGibson,
ReplyDeleteAre you still having problems with the background image? If so, let me know and I'll post a workaround for you.
For My Goodness,
I'm so glad to know this post has helped you too! GiMP does take a while to get used to, though I personally find this much easier than Photoshop!
If you're interested in the eBook too, this features even more easy customizations than the priginal article, and some useful resources for generating images too.
Best wishes,
Amanda
amanda,
ReplyDeletei am still having trouble. i have tried different variations of code, and nothing seems to work. i wonder if it might be trouble with the image i am using? i am attempting to use an image i created in photoshop - will this work? thanks!
This comment has been removed by the author.
ReplyDeleteThanks Amanda,
ReplyDeleteI started my blog 7 weeks ago and have found this to be the only place where HTML seems to make any kind of sense.
I have modified the dots template, but I can't seem to figure out how to change the space between the header and the start of my posts. Is there something I have missed? It's no big deal, but it intrigues me. I am so pleased with how relatively easy it was to modify. Thanks again.
I too am having the hardest time making my background image show up. I followed all the steps you posted and also tried the background-image thing in the earlier comment but I can't make it work. I have no clue what I'm doing and am thrilled to have made the 2 changes (header and page color) by following your instructions. You are a wonderful blessing! Can you tell me what I am doing wrong with the background image thing?
ReplyDeleteHey Amanda
ReplyDeleteWhat happens when the length of my posts grows longer..?? does the background image repeat itself..??
i dont want that..??so what should i be doing..??
i dont have bacground image like the one you have in da blog..i've made someting which has pictures & text both merged..something like graftti..
im not much into html but can work in dreamweaver quite good..so is there any way i can make all of my page in dreamweaver & then paste the code..?? make it look just like a website..??that would require a lot of knowledge wouldnt it..??
Wonderfull..all of ur tutorials.. :D
tnx..
Thank you so much for your tutorial! I was so tired of having my blog look like everyone else's, but now it looks way better.
ReplyDeleteHopefully with practice I will get it to be stunning all the time.
your blog is very useful for me... I just got started with my own blog, and I had just finished with my own header. I used the minima template as a scratch and i admit, my blog looks good but plain. i had yet to add widgets. can i do something about that border in the header? thnx thnx thnx!!! :P
ReplyDeletehttp://amarieluvspink.blogspot.com/
you're the best, Amanda!
ReplyDeletethank you for the easy-to-understand tutorials. I've gained confidence customizing my blogs.
thank you very much!!!!
You are a lifesaver! Thanks for the easy to understand instructions :0)
ReplyDeleteI'm using the minima dark template...do you know if it's possible to replace the sidebar headings (eg About Me) with my own graphic I've created in photoshop? I've been looking at it for ages & just can't see how to do it...
Thanks for your help :0)
I have applied a colored background to the sidebar and main post section but I want them to be the same length no matter what, Is there a way to do this? Right now they seem to adjust to the amount of stuff that is in them.
ReplyDeleteI'm having trouble putting the background i want. I'm using minima. I managed to put the header but I just can't put the image I want in the background.could you help me out?thanks
ReplyDeleteAmanda! Wow! What a great tool for all of us dummies out there! I can't tell you what a find your site was! Here is my trouble so far...am trying to upload a background to the minima template and it goes on there but it is just repeated over and over all the way down the blog instead of stretching to make one background! Can you help!?
ReplyDeleteThanks so much!
Kam Roberts
jasekamroberts@windstream.net
Hi Amanda,
ReplyDeleteI am using the Super Custom template, I am wondering how to change the color of the google tool bar or take it out completely. If you could help me with this I would appreciate it greatly. Also I want to re-do my header, is there a way I can center it or make it stretch further? And my background just repeats in squares one after another...can I make it just one full image?
Thanks sorry for all the questions!
Nicole Martin
sammi_nickel@yahoo.com
Hi,
ReplyDeleteThis blog is wonderful and so helpful. I am not able to get a background image. I am trying to use a tileable image that I found on squidfingers.com. I loaded a tile into photobucket, followed your directions and no matter what I do, my blog still has a white background. Any idea why? I have literally been working on this for two days straight.
www.jamiebree.blogspot.com
I can't find any header-wrapper on my template only #header
ReplyDeleteHow can change the header background? please help
Hi Amanda,
ReplyDeleteI've gotten a lot of help from your blog already. Thanks so much.
So here's my problem: I'm using the minima template and I have a picture for the header. I have a different green-colored background and a white posting section. The picture will not extend the full width of the white posting area (only to the outer edge of the words) and it will not stretch to the top of the page (instead there is white border all around.) I have made the margins 0 and the header and outer wrapper width the same. It's a puzzle I just can't figure out and I hope you can.
Thanks so much.
Dorci
awesome thanx
ReplyDeleteHey Amanda =D Thanks really, your guide is very clear to follow, at least my blogger looks better... see u arround.
ReplyDelete//Masked Castlelady Was Here//
I've followed all of the directions here to replace the normal blog header with my own. I've been able to do it on one of my blogs but no matter what I try this blog it just won't work. Any hints or ideas so I can have my new header??
ReplyDeleteyou rox!!!
ReplyDeleteCOMMENT FROM A DESESPERATE PERSON!!!
ReplyDeleteHi Amanda!What's up?
I need ur help!!!
The thing is that I can't change my background!I don't know why!!!!
I even tried with your link,but I can't!
I'm using the template Mr. Moto....
Please help me!!!!
It just....I need an special "look" to my blog...so I need ur help!!!
I tried too many times and I couldn't!!!
Please answer in my blog....
http://jbfansargentinaclub.blogspo.com
Paula.
Hi Armanda, your blog is very nice, contents is very useful. I'm a vietnamese, i want translate a many article of you to vietnamese and post it in my blog, can you OK?
ReplyDeletethank you a lot.
Hi Amanda!, This is how I have designed the template of David Beckham..
ReplyDeletehttp://beckhamtheme.blogspot.com/
Hi Amanda. This is really helpful. I'm going to try this in my site. Thank you, thank you, thank you!
ReplyDeleteVery helpful, thanks for posting this!
ReplyDeleteThanks for the great tutorial.
ReplyDeleteBut what if i want a background on my posts part of the page that isnt attatched to my header?
Thank you
Rhian
Hi. Thanks for the tip. I have tried and tried to change my background, I do exactly as you say, my code looks exact, but the background won't change. Any ideas? Thanks.
ReplyDeleteHi Amanda. Thank you so much for putting this together. After going through the steps on changing my blog, it looks 10000 times better!!
ReplyDeleteGreat tutorial, thanks again!
Laila
HI,
ReplyDeleteIm new, just started a blog yesterday, is it possible to have a minima layout but using the scribe colours and placing? hope that makes sense?
Amanda,
ReplyDeleteThanks so much for this! What a great tutorial!
I do have a question. I put a solid background over a patterned one, like you demonstrated, and on my home computer the pattern shows up well on the sides. But on the work computer, the patterned sides are very small -- the gray background takes up most of the screen. Is that because of my computer/screen's settings? Is there a way to ensure that everyone sees the same amount of patterned background on the sides no matter what their computer settings are?
Hi Amanda
ReplyDeleteThanks for the great tips on personalising a Blogger Blog template.
I've had great fun this evening following your suggestions and giving our business blog a much more 'in-line corporate feel'.
I had trouble with the background image too but Quiche's timely comment saved the day (and my hair).
So thank you again and pop along to http://purple13.blogspot.com to see the fruits of your wisdom.
Jonathan
Fabulous Photo Gifts
http://www.fabulousphotogifts.co.uk
On Twitter - fabphotogifts
I cant seem to find the section of code to change my header. I am using the dots template and there is no space built in for a header. This is what it says:
ReplyDelete#header-wrapper {
display: none;
}
Any suggestions?
Hi everyone! Trying to upload the background on my blog but no can do. I've tried both the way explained in the tutorial above and doing background-image: url etc etc.
ReplyDeleteCan anyone help me?
narrativefootprints.blogspot.com
Thank you!
Thank you, thank you, thank you for posting this! I followed your directions and love the new look of my blog :) www.marvelouslycomical.com. Check it out! Wouldn't have been possible without this blog post! :) (I may still change it around a bit, but for now I'm just loving the whole layout!!) Your blog is wonderful :)
ReplyDeleteThanks for this!!
ReplyDeleteWow! This is an empowering tutorial! I still cannot get my header centered though. I tried the trick and I have looked a few other places, and I can't get anything to work! I am using Minima as my template. I'd sure appreciate any insight you have--thanks!
ReplyDeleteI tried to put a background image in but the preview shows up as completely white background. What am I doing wrong?
ReplyDeleteThanks so much for this post! I used all of the information! :-)
ReplyDeleteThanks for the help!
ReplyDeleteAwesome, gracias! Love the squidfingers suggestion and followed your instructions--simple and clear. And I'm liking the results.
ReplyDeletewww.momslaunchbox.com
SOOOOOO helpful and clear! thank you!!!!!
ReplyDeleteis there a widget that can make the header region into a popular posts area with thumbnails sort of like lifehackers front page?
ReplyDeleteGreat stuff, thanks Amanda :)
ReplyDeleteI didn't execute your trick still. But I was seriously looking for this info. Thanks a million.
ReplyDeleteThanks so much, Blogger Buster. I've wanted to spice up my Minima template and make my blog match my website for so long. Now it does! The tutorial is easy to follow and it worked!
ReplyDeletewhats good? ummm.... i have absolutely NO idea what im doing
ReplyDeleteThis is the most awesome, straight-forward, helpful tutorial ever! Thank you so much!
ReplyDeleteThis is a good place to find headers:
http://www.eblogtemplates.com/free-blog-header-images/
I used paint.net to edit the header.
and used grsites.com for a background texture. You can also find the codes for certain colors in the layout tab > fonts and colors in blogger.
Happy blogging!
Hi,
ReplyDeleteI too, am unable to change the backgrond color. I insert the code and just nothing at all happens. I tried the other version in the comments to no avail. Any suggestions? Also, any reason why one of the outline lines of my header disappeared?
www.teresacooks.com
I need some assistance, please, in getting my background "stretched" to be centered??
ReplyDeleteTHIS has been a totally AWESOME tutorial site!!!
THANX for all the hard work, time and effort!!
:)
I customized my blog after reading this. Very useful.
ReplyDeleteThe clearest and most helpful blog tutorial ever! Truely awesome even though I haven't tried it yet. But I'll difinitely try it soon.
ReplyDeleteI know this is an old post but I'm hoping you get to see my comment and help me with this.
currently I have a problem with adding some space after my header (between the header and post)! the information in my post or the top of my side bar is very close to the header and it doesnt look very nice.
could you please help me solve this? Also, how to extend the spacing between posts.
Thankuuuu
I have worked all day on my blog's background. Finally I came across your blog! Oh! Thank you, Thank you! Awesome tutorial.
ReplyDeleteThank you thank you thank you .... after so many tutorials, finally one that makes sense :)
ReplyDeleteThis is a great help! I did mine though just changed the header. I'm very happy that I was able to read this.
ReplyDeleteYeeaaah I tried to adjust the problem with the header and... as a result, I can't get a header image in anymore - even though I even resetted the settings... It supposedly loads it in and all, like before, but nothing appears on my blog. Thank god I was testing on a blog that was supposed to be my new blog and not the existing one...
ReplyDeleteHeyya.
ReplyDeleteI've tried the tutorial, and it works a treat, but i'm having problems adding a main kind of floral background. I've tried every possibitlity, but to no avail...
Any pointers?
Thanks Again. Peace. :)
ThaNX Amanda -
ReplyDeleteDownload Full and Free Softwares - http://fullfree-softwares.blogspot.com
This is THE Tutorial, thanks for sharing.
ReplyDeleteThank you so much, I'm just starting out and this has been very helpful.
ReplyDeleteHey Amanda,
ReplyDeleteThis was extremely helpful! I thought you made a mistake with the html since I could not change the background image, but I later realized that I forgot to remove a semi-colon! Thank you for the help
Thank you!! Worked like a charm!
ReplyDeletethanks..it's work..
ReplyDeleteHi Amanda, maybe you can help me. I'm having trouble with a few things: changing the background color of my whole blog, and getting it to look more spaced out...currently it looks like one big column down the middle of a white page.
ReplyDeletehttp://iam-manythings.blogspot.com/
I used the Minima template (although now I wish I had picked a 3 column).
Any ideas?
Thanks so much ! Tatiana
Hi,
ReplyDeleteI'm very new with blogging. I tried to search for the lines of #header-wrapper in Layout>Edit HTML, but I just couldn't find it. I cut and paste the XML to MS words and use the "find" tool to look for the line too, but still I can't find it. Why could this happened?
I am thoroughly convinced in this said post. I am currently searching for ways in which I could enhance my knowledge in this said topic you have posted here. It does help me a lot knowing that you have shared this information here freely. I love the way the people here interact and shared their opinions too. I would love to track your future posts pertaining to the said topic we are able to read.
ReplyDeleteThanks for taking the time to discuss this, I feel strongly about information and love learning more on this. If possible, as you gain expertise, It is extremely helpful for me. would you mind updating your blog with more information
ReplyDeleteThanks alot always looking for more information
ReplyDeleteThis comment has been removed by the author.
ReplyDeletenice tips...i will try..
ReplyDeleteHi! is it possible to change "post or page background", because I don`t want the light blue like the above picture in the post.
ReplyDeleteGreat guide! Thanks for the info
ReplyDeleteHey its really good idea, i mean the steps given by you for creating more effective blogs is good. now i can create better cheat blog. thank you.
ReplyDeleteSplendid and good! I will take heed! Reverse Cell Phone Lookup | Landscape Lighting | Pellet Stoves | Outdoor Security Lights | Used Pellet Stoves | Lookup a Cell Phone Call
ReplyDeleteNice tutorial. You are very helpful. Thanks for sharing.
ReplyDeleteVery helpful stuff. Thanks
ReplyDeleteOakley Sunglass Sale Went to Stanford Medical School to test the embryo is still in operation during the experiment, the success rate is very low, lady, why you want to eat this bitter Xiao Chi, bear in adults than children, Xiao Chi has the right to survival, c you are not.
ReplyDeleteoakley radar range Juan Chi totally did not think he retained a real affection, can not help but be greatly surprised. sz51sd
oakley sunglasses online Juan Chi laugh, "to please the woman to please, you have to let her stop eating? Or, Juba at the same time can only do one thing, has to eat you can not speak?"
oakley sunglasses discount Let him not to mess spilled idea that!
www.cheapestoakleysunglass.com Juan Chi just laugh, "Who needs your product? See the Department of fear, I have not sent you at ease with me."
" ugg boots sale online Once at this information ugg sale I do not want you to tell me the whereabouts of Sunzong. But you are renowned Sunzong , tell him soon , appointment yesterday , there was named director of the guests waiting in the waiting area. Dong Xiaokui gently smile ugg boots Later ugg boots sale This really is a careful man. Dong Xiaokui feel migraine minutely him uggs outlet Yeah , this change in childhood , a good mile. Zhou Chen-chen in the side cheap ugg boots On this side the other side heard this uggs boots on sale and very few other buildings around the community uggs boots concluded that the hair should be set up Dong Xiaokui ugg boots cheap immediately hung up the line. ugg boots on sale for a stranger"
ReplyDeleteThanks to share with us the information. I wish you good luck!
ReplyDeleteI'm wondering if you can help me. I've got a blogger header that I want to be larger than the actual blog width, but any images or headers you place automatically left align with those limits. Can you help?
ReplyDeleteI have my own plastic card blog but i m not getting any response how can i?
ReplyDeleteGift Card printing
Scratch Cards
Plastic Business Cards
Thanks for sharing your info. I really appreciate your efforts and I will be waiting for your further write ups thanks once again.
ReplyDeleteVideo lead capture pages
Hi Amanda,
ReplyDeleteThis information is awesome for someone who just started blogging. I tried to change my website default background but was unsuccessful. With the help of this article i was able to understand the basics and with little experiments i changed the background. I own a website named www.letmekeepitsimple.com.
I have a question too. I have uploaded some pictures as well the library. How can get them into html, css file of my website. I mean what path should I address in these files.
Now life is impossible without Plastic card . They provide us security and financial leverage.
ReplyDeletenice tutorials...
ReplyDeleteGood Post. Now this helps to customize my blogger template easily
ReplyDeleteI have a problem with adding some space after my header (between the header and post)! the information in my post or the top of my side bar is very close to the header and it doesnt look very nice.
ReplyDeleteThanks for the tutorial, ma'am. It's quite a gift for newbies like me.
ReplyDeleteLove!
I have read many blogs. But no one is interesting like yours. You are really very helpful minded. Thanks!
ReplyDeletehi, i could really do with some help..
ReplyDeletewe have started a new craft blog and i cant get the template to fit the page..
I can give you my details so you can log in and have a look...
please please please help!
thank you
lisa_rennard@hotmail.co.uk
I looked and looked and looked but was not able to find the
ReplyDelete#header-wrapper {
code that is meant to start this tutorial. Is that line in the simple new Blogger templates? I'd appreciate the help!
Best Information
ReplyDeletehtttp://www.learnonline77.blogspot.com
ReplyDeleteSun damage may strike at any season, whether it’s summer or winter, so it’s wisest to always wear sunglasses whenever we go out. It makes for an awesome fashion statement too!
Crystal Custom
Promotional Sunglasses
Promo Sunglasses
Personalized sunglasses
Customized sunglasses
anyway, where is the footer section ?
ReplyDeletethank you... :)
Learn to customize the blog background.
ReplyDelete