Three Column Rounders 3
The Rounders 3 templates is actually one of my favorite templates. It was the first Blogger template I ever used, and I would have kept it had I known how to add a column and turn it into a 3 column blog. There were just no 3 column instructions for this template at all. So I wrote them, and here they are.
These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). Update (6/5/09): The problems with loading custom header and footer images problem have been fixed! You can now upload almost any custom image to your header, and the header box will expand to fit your image. Thanks for bringing this to my attention! This post is now a better resourse for all.
These instructions are for those using Blogger's new "Layout" version. I will be adding instructions for the Rounders "Classic" template shortly, as well as instructions for Rounders 2 and 4. Each version of Rounders is slightly different, so if you are not using Rounders 3, you should look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.
So let's turn your Rounders 3 template into a 3 column blog! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:
/* Page Structure
-----------------------------------------------
(Or, allow me to introduce your browser's control F (CTRL+F) command: you just type CTRL F and then type /* Page Structure into the dialog box and click next).
Now, change the width of the "outer-wrapper" from 740 to 990:
#outer-wrapper {
width:740px;<-------change to 990
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":
These instructions are simple and easy, and you can do it if you don't know the first thing about HTML (which is perfect because I don't know anything about it either). Update (6/5/09): The problems with loading custom header and footer images problem have been fixed! You can now upload almost any custom image to your header, and the header box will expand to fit your image. Thanks for bringing this to my attention! This post is now a better resourse for all.
These instructions are for those using Blogger's new "Layout" version. I will be adding instructions for the Rounders "Classic" template shortly, as well as instructions for Rounders 2 and 4. Each version of Rounders is slightly different, so if you are not using Rounders 3, you should look in the right sidebar for the specific version of Rounders that you are using, and click on on that link.
So let's turn your Rounders 3 template into a 3 column blog! First, open up Blogger and go into your Dashboard, then click on the "Layout" tab. Then go into the "Edit HTML" tab. You will see a bunch of html code - but don't worry you don't need to know anything about it. Just scroll down until you see this:
/* Page Structure
-----------------------------------------------
(Or, allow me to introduce your browser's control F (CTRL+F) command: you just type CTRL F and then type /* Page Structure into the dialog box and click next).
Now, change the width of the "outer-wrapper" from 740 to 990:
#outer-wrapper {
width:740px;<-------change to 990
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
Next, you'll need to add 12 pixel margins to your main column, so you will make a minor change in the margin line of the "main-wrap":
#main-wrap1 {
width:485px;
float:left;
background:$mainBgColor url("http://www1.blogblog.com/rounders3/corners_main_bot.gif") no-repeat $startSide bottom;
margin:15px 0 0 ;<-------change this to "12px 0 0 12px"
padding:0 0 10px;
color:$mainTextColor;
font-size:97%;
line-height:1.5em;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
That piece of code should now look EXACTLY like this:
#outer-wrapper {
width:990px;
margin:0 auto;
text-align:$startSide;
font: $bodyFont;
}
#main-wrap1 {
width:485px;
float:left;
background:$mainBgColor url("http://www1.blogblog.com/rounders3/corners_main_bot.gif") no-repeat $startSide bottom;
margin:12px 0 0 12px;
padding:0 0 10px;
color:$mainTextColor;
font-size:97%;
line-height:1.5em;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
So far so good. Now, just after the "sidebarwrap" code block in the same section, paste in the following code (you can use "CTRL C" to copy it, and then "CTRL V" to paste it):
#left-sidebar-wrap {
width:240px;
float:left;
margin:15px 0 0;
font-size:97%;
line-height:1.5em;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
#newsidebar h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
#newsidebarbottom h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
Now, we need to adjust the header and footer images. The reason why there are so few tutorials on three column rounders modifications is that it requires a little bit of knowledge to expand the rounders header image. This image uploads from Blogger's "blogblog" website, which means you need to not only increase the width of the image, but you also need to find someplace to host the new, expanded image. But don't worry, Three Column Blogger has done all this for you!
The first thing you need to do is locate the /* Blog Header section, it's one section below where you just pasted the new sidebar code. You will see two urls in the code, one url links to a file that helps create the top rounded part of the header image (corners_cap_top.gif), and the other url links to a file that helps create the bottom rounded portion of the header image (corners_cap_bot.gif). The code looks like this:
#header-wrapper {
background:$titleBgColor url("http://www2.blogblog.com/rounders3/corners_cap_top.gif") no-repeat $startSide top;
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("http://www.blogblog.com/rounders3/corners_cap_bot.gif") no-repeat $startSide bottom;
padding:0 15px 8px;
}
Once you've located that code, you need to remove $titleBgcolor from the code. I have highlighted in red above so you can spot it more easily.
Next, The top header url needs to be replaced with this link:
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_top.gif
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_top.gif
and the bottom header url needs to be replaced with this link:
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif
So highlight and use CTRL C to copy the above links (one at a time), and then use CTRL V to paste each new link into the code block. When you do that, the new header code should look like this:
#header-wrapper {
background: url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_top.gif")
no-repeat $startSide top;
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif")
margin-top:22px;
margin-$endSide:0;
margin-bottom:0;
margin-$startSide:0;
padding-top:8px;
padding-$endSide:0;
padding-bottom:0;
padding-$startSide:0;
color:$titleTextColor;
}
#header {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif")
no-repeat $startSide bottom;
padding:0 15px 8px;
}
padding:0 15px 8px;
}
There is also a footer image that needs to be changed, but it's easy because the steps are the exact same as that for the header image, and it involves using the same new links. You will also need to remove $titleBgcolor from "#footer wrap2". So scroll down to the /* Footer section and replace the existing links with the new ones. When you finish, the code should look like this:
#footer-wrap1 {
clear:both;
margin:0 0 10px;
padding:15px 0 0;
}
#footer-wrap2 {
background: url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_top.gif")
no-repeat $startSide top;
color:$titleTextColor;
}
#footer {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif")
color:$titleTextColor;
}
#footer {
background:url("
http://i454.photobucket.com/albums/qq270/threecolumnblogger/
new_corners3_cap_bot.gif")
no-repeat $startSide bottom;
padding:8px 15px;
}
#footer hr {display:none;}
#footer p {margin:0;}
#footer a {color:$titleTextColor;}
#footer .widget-content {
margin:0;
}
padding:8px 15px;
}
#footer hr {display:none;}
#footer p {margin:0;}
#footer a {color:$titleTextColor;}
#footer .widget-content {
margin:0;
}
At this point, believe it or not, there is only one more step. This particular step is hard only because you need to make sure you paste the additional code in the right spot, and this next spot can be a hard place to identify (CTRL+F helps here a lot).
Anyway, in the same " */ Footer " section where you are now working, scroll down a little further until you see:
<div id='header-wrapper'>
Then, locate the the "main wrapper" id a few lines below it. It looks like this:
<div id='main-wrap1'><div id='main-wrap2'>
Now, just above the "main wrapper" id, copy (ctrl c) and paste (ctrl v) the following code EXACTLY as it appears below:
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
Note: this will also insert a Blogger logo into your new left sidebar, but you can customize this however you'd like when you finish by using the Layout tab. (*Note: if, at the end of the tutorial, you save the template, you get a message that says "widget ID should be unique", you already have a blogger button loaded in your original sidebar and you will have to delete that one temporarily. But don't worry, you can customize all of that once you finish.) For now, there's no need to worry about it. So, after you do that, the newly modified section should now look like this:
<div id='header-wrapper'>
<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='no'/>
</div>
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
<div id='main-wrap1'><div id='main-wrap2'>
<div id='crosscol-wrapper' style='text-align:center'>
<b:section class='crosscol' id='crosscol' showaddelement='no'/>
</div>
<div id='left-sidebar-wrap'>
<div id='sidebartop-wrap'><div id='sidebartop-wrap2'>
<b:section class='sidebar' id='newsidebar' preferred='yes'>
<b:widget id='BloggerButton1' locked='false' title='' type='BloggerButton'/>
</b:section>
</div></div>
<div id='sidebarbottom-wrap1'><div id='sidebarbottom-wrap2'>
<b:section class='sidebar' id='newsidebarbottom' preferred='yes'>
</b:section>
</div></div>
</div>
<div id='main-wrap1'><div id='main-wrap2'>
And you are a now master three column Rounders 3 coder, because you're done! Hit preview to see your new three column Rounders 3 layout, and then save the template if everything looks ok. Go into the "Layout" tab and add a google gadget, or a widget, of your choice.
When you do go into the Layout tab, you may notice that the right hand column has dropped to the bottom of the "Layout" page. If this happens, it means you need to make a slight adjustment to the layout "wireframe editor", which is easy to do if you made it this far.
Go back into the html tab, and scroll or CTRL F down to the section that says:
/** Page structure tweaks for layout editor wireframe */
Then, replace the code directly under the "/** Page structure tweaks for layout editor wireframe */" line with the following code block:
body#layout #header-wrapper,
body#layout #outer-wrapper,
body#layout #footer-wrap1 {
width:840px;
}
body#layout #main-wrap1 {
width: 485px;margin-right:10px;
}
body#layout #sidebar-wrap,
body#layout #left-sidebar-wrap {
width:150px;
}
The resulting code should look like this:
/** Page structure tweaks for layout editor wireframe */
body#layout #header-wrapper,
body#layout #outer-wrapper,
body#layout #footer-wrap1 {
width:840px;
}
body#layout #main-wrap1 {
width: 485px;margin-right:10px;
}
body#layout #sidebar-wrap,
body#layout #left-sidebar-wrap {
width:150px;
}
]]><b:skin>
</head>
Best of luck with your blogging. I hope this post on creating a new three column Rounders 3 template was helpful and that the new images were a big timesaver! If you found this helpful, links back to this post on three column rounders are always welcome. Please also note that these header images are hosted on photobucket. Feel free to use them, but it would be safer for you to download them and host them on your own account - that way you have control over the images. Thanks!
Labels: 3 Column Blogs, Three Column Rounders 3

54 Comments:
Hi. Thanks for your help on this! I really appreciate it, as I am just trying to get my adoption blog going!
Erin
thank you, thank you, thank you!!!
Hi! Thanks so much for the easy-to-follow instructions!
But there's one tiny prob...I noticed that my post header has no 'box' like the regular Rounder 3 template. How to create this 'box'? Also, I want to align my header to the middle but don't know how...can you please help!
Thanks so very much!
Hi Zatil! You are not the only one who has had some trouble with the header, I will check it out and see if I can figure out what's going on. Give me a few days though.
Thanks for commenting and reading! I will post a solution, I hope, shortly.
Hi Zatil! You are not the only one who has had some trouble with the header, I will check it out and see if I can figure out what's going on. Give me a few days though.
Thanks for commenting and reading! I will post a solution, I hope, shortly.
Hi, I had trouble with the header "box" too. But I managed to fix it eventually by hosting the image on my own site. (maybe blogger doesn't like photobucket...) Try linking to here instead:
top:
http://sites.google.com/site/leonsooi/Home/corners_cap_top2.gif
bottom:
http://sites.google.com/site/leonsooi/Home/corners_cap_bot2.gif
Hope this helps!
Thank you so much for your help! Everything went smoothly for once. yay!!!
This all seems very helpful but something keeps going on. is therenanway you can just put the code so we can get the three columns?
Hello,
This was the most helpful tutorial I've seen on this subject. Thank you for putting this together.
One quick question, though. I have customized the link, visited link, and title colors in my sidebar, and can't seem to change them now in the "fonts and colors" section. Any ideas on how to tweak those?
This is the blog I'm working on, for reference: www.funnygrownhere.com.
Thanks again!
Nick
nick@nickzaino.com
Zatil, you have no blog listed in your profile so I can't see what your specific problem is.
If you are having a problem with the header images it probably relates to the "max width" setting under the "#description" section in the code.
Just delete that single "max width" line and that should solve your centering trouble. I will amend the tutorial.
Nick, customizing your colors is pretty easy. I answered your original duplicate question over on the other Rounders tutorial, so check out the answer over there; I think it will help you get the colors you want.
Thanks for all the commments; Links are appreciated too.
Cheers.
hi there thanks so much for posting the tut, but i am having a problem. i would like to use my own image as my header, but can't seem to 'replace' it. how can i do this?
thanks
WOW THANK YOU SO MUCH!!
I looked all over the web to find this, and you finally made it work!
Excellent job explaining how to do it. I haven't customized much yet, but when you get the chance, check out what i did with your help!
http://lennysyankees.blogspot.com
Thanks again!!
Hi I really want to try this but a few things in my html look differentt very minor. I signed up for blogger in august 2008.
Should it work for my blog or was there another update since you posted? thanks for any help.
Megan
http://dailyessentialsanddeals.blogspot.com/
thanks so much, I tried it on a test blog and it worked great!!
This post has been removed by the author.
This guide was incredibly easy for a novice to follow and it worked great! Most importantly, adding the 3rd column did not disturb any of my existing blog content, and it works flawlessly with the layout editor. Thanks a bunch for posting this!
One question - The links on the new left column have changed font color to match the links of the main posts. How do I get left column links to return to a white font like the ones on the right-hand column?
My results following this guide can be seen here:
http://oblinkin.blogspot.com/
my problem is...the right sidebar displayed in the bottom of the blog..
but when i first try it..it works well...
but today, the right sidebar moves to the bottom of the blog...
whats the problem ?????
humanityfever.blogspot.com
wow youre awesome!! thank you so much :)
Thanks a bunch for making it so easy to modify my blog's template! Check it out: http://icecream.whistledance.net/
That was awesome! Thank you!
Thanks for the help. This has made my blog look a ton better.
One question ... The links and headers on my left sidebar are now the same color as on my main posts and not the right sidebar. Is there any way to change those to match the ones on the right sidebar? This is Similar to the question Peter asked above.
Thanks again
http://uncgbasketballfan.blogspot.com
Hey Dash - nice looking blog! I see you got your problem fixed. You have a third party xml template, not a blogger template, and as you discovered you just need to tweek the style sheet to get the links back over to white.
For all those who are using the free blogger template - there is no need to worry about this.
OONjings Chronicles, you have content in your right sidebar that is too wide. The widths of your photos/widgets need to be the same width as your columns.
BTW, there are about 500 comments across this blog, and I try to respond to all. I hope you'll excuse me if I miss a few. Some of these questions relate to third party templates that I am not familiar with. Still, I will try to help where I can!
Hey thanks for the easy tutorial but i have two problems-
1)my header is not centered
and
2) my left column is really close to my middle column!
if you could just help me that would be great!
Flip, use the opening and closing html tags <center> and </center> to center your header, and read the post on adjusting your margins. All the information you need to increase the space in between your left column and main column is right there!
You may have to scratch your head a little bit while you implement it, but all the information you need is in that post, and it's free!
RW,
Thanks. Yea, I figured a way around my problem. The links colors (on the left side) were my main problem and I figured out that if you just made them plain text and then changed the color manually that everything would come out the way I wanted.
Thanks again for all of your help.
hi ya...
i am having problem with 3 column layout.... can you please check my blogspot and let me know where i am going wrong...
my site is .. http://pathway2myworld.blogspot.com/
i dont know how but i got the heddar background colors...
your steps were really easy ...
I do really appreciate your effort for explicit info on this.but i would suggest you to go for image tutorial that enables few people understand better....is it i am right?
Your best friend RAMESH.
Hi RW. Did you ever post instructions for 3 columns for Rounders 3 Classic? I've used your tutorials to switch my new minima blogs. You made it so easy! Thank you!
I'm just itching to change my old Rounders 3 blog to 3 columns. Did I miss it somewhere? If not, do you think you'll be adding it any time?
Thanks!
This post has been removed by the author.
Okay. I did this five times, and finally figured out that by deleting
$titleBgColor
it took away my blue color box behind my header and footer.
I'm not sure why that's included in your steps above. I did everything else (except that the two times you called for it) and the transfer to three columns worked very well!
Thanks
Namaste,
Lee
Thank you so much for this tutorial. I made three columns, however, I'm still having a couple of problems.
1. I can't get my header to be the right size. I can change it in illustrator, however, it's still small here.
2. Why the heck is my background still blue? I changed the main background color to white - fffff, however, it is still blue on the blog. Help please! Thanks!
Allison
Thank you so much for this easy to follow tutorial. Having a 3 column blog makes it look much less cluttered and gives me much more versatility. I appreciate your help. Thanks again!
i did EVERYTHING...and recieved this error
*More than one widget was found with id: BloggerButton1. Widget IDs should be unique.*
how do i do that to save my templates??
Thanks REIT Wrecks (RW) for the excellent job.
On my “plain” blogs
I made slight change on the sidebar-wrap width from 290 to 240px.
I also encounter a slight problem with my left-side bar, text color. However I managed to resolve it.
For anyone who encounter similar problem, you may visit my blogs @
http://free-rbsd.blogspot.com/
You can get the code that I use to change my left-side bar, text color similar to right sidebar.
Once again thank You RW.
Thanks - it worked but I'm having trouble with the left hand column - the header text is the wrong color. Any fixes for this?
please email laduedave@yahoo.com
Thank you so much !!! Realy a very helpful & much easier tutorial
I'm still exploring some more options.
Thanks again
Tanveya
RW,
I'm having trouble with a "Photo Bucket" message popping up on my header and footer. Any thoughts on how to fix it?
Thank you so much for the great tutorial! I made a couple of changes that maybe be of interest.
Find this text:
#newsidebar h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
#newsidebarbottom h2 {
color: $postTitleColor;
border-bottom: 1px dotted $postTitleColor;
}
In that section change in two places from
color: $postTitleColor;
to
color: $topSidebarHeaderColor;
Then tweak the text colors.
and right below the code above add some new colors.
#newsidebar a {
color: $topSidebarLinkColor;
}
#newsidebar a:hover {
color: $topSidebarVisitedLinkColor;
}
#newsidebar a:visited {
color: $topSidebarVisitedLinkColor;
}
#newsidebarbottom a {
color: $bottomSidebarLinkColor;
}
#newsidebar a:hover,
#newsidebar a:visited {
color: $bottomSidebarVisitedLinkColor;
}
Then for the sake of consistancy find
body#layout #outer-wrapper {
width: 730px;
}
And change the 730 to 980.
BTW, photobucket says there has been no activity on your account for 90 days. Maybe you have to drop a pixel in there a few times a year to keep them happy.
I plan to create my own caps because the dark corners blend in with my header background.
This post has been removed by the author.
I should have taken your advice - I didn't save the photobucket images from Rounders and now my blog is showing the photobucket account expired message. Any suggestions would be really helpful. Did anyone else save the ronders graphics - and are you able to share them?
please email response to laduedave@yahoo.com. My blog is BlueshirtBrothers.com
I'm having the same problem with the photobucket image showing up in my header. How can I remove that? You can email me here if you have any suggestions for me. I'd really appreciate it.
bj1966001 (at) yahoo (dot) ca
I also am having the photobucket problem - but only in IE for some reasons. Crossing my fingers that someone will have fix.
Thanks for the help! My blog looks great now!
Check out my blog, the Discussion News Network!
This post has been removed by the author.
Grab the caps from links on my blog.
This post has been removed by the author.
Thank you so much for this tweak. I was literally pulling my hair out to figure out why I couldn't get the three columns to each have their own sets of colors after downloading this already made template that had errors in its code.
My blog now looks the way I wanted it to look thanks to this Rounders3 tutorial.
I also came up with a line of code that's a better substitute for the rounded edges image that's used for the corners. Instead of using a different image that's been uploaded to photobucket, you can easily type in style="width:990px" right after the .gif" and before the ) so it would essentially look something like this...
background:$titleBgColor url("http://www2.blogblog.com/rounders3/corners_cap_top.gif" style="width:990px")
Hope this helps!
Thank you very much once again, fellow blog tweaker!
thanks! I made it. see on www.martinstam.blogspot.com
I have made the mainwrap wider, because of the whidt of the embedded youtube object. Bud now is the question, how to create the line in the wrap more to the right?
many thanks, Martin
Could you help me figure out how to make the comments section in rounder black to match the rest of the posts?
oy... thanks so much.. for this....
I thought the instructions were difficult and at the end of the tutorial, all will be just wasted..
but it was fine!
thanks...
All I need now is to upload a greater header image... not to worry, I was looking for a bigger header anyway....
Thanks so much
Thanks a million for all the helpful stuff for 3 column blogger template . It works just fine!
It was really helpful.
Ill always remember this site for all the help as it was really a big issue to make the template a 3 column one.
So, thanks once again !
Joy
Wow! Thank you!! Your directions were fantastic! I am totally clueless about HTML, so if I can follow those directions and have it work, then that says a lot! :) I added the 3rd column on the left of my blog, but noticed the widget title colors are not what I want. How do I change those? Much, much appreciation!
Spectacularly successful!
I do have one question: How do I "center" the text of the header, ie. the name of my blog (Jaywalking with Jaunty)?
Here's my blog:
http://www.jauntyjaywalking.blogspot.com/
Post a Comment
<< Home