Wednesday, October 26

Some Blogger Tips for the Photograbloggers

Photography fans, be prepared. I'm about to get all geeky on you with this post.

I'm a big fan of Blogger, which is the platform that I use to publish this blog. It's free, easy to use and they push out regular updates to improve the software. But, it does have its weaknesses.

If you spend just a bit of time adjusting the color scheme and layout using the new Template Designer, you can give your blog a bit more personality.

There are also some html and css hacks that can introduce new functionality. For those of you that aren't familiar with these computer languages, you might want to look around at online tutorials to learn the basics such as how to format text.

Getting Ready
If you're ready to do some experimenting, make sure that you backup your template first. You can also go into the HTML section of your template and copy/paste the code to a Google Doc or other word processing document for safekeeping.

Most of the customizations that I do start by making slight changes or adding code to the HTML section. Here's how to get there:
  1. Log in to Blogger 
  2. Click on 'Template' 
  3. Click on 'Edit HTML' 
  4. Click on 'Proceed'
Before you panic, remember that HTML is a language... and just like any other language, you aren't going to start 'speaking' it right away. Start looking for key words that you recognize like Page Text or Header. See if you can identify that each component has characteristics - such as a link has a default color value (#2288bb) or that your Blog Title is set to size 60 font (60x Pacifico).

Most of the code that you'll see in some of the samples I will link to just involves copying some code, searching for the correct location to put it in (CTRL + F) and pasting.

Use a Safety Net
In addition to backing up your HTML, you should always click on the "Preview" button before you click on the "Save Template" button. If you make a mistake, you can easily choose "Clear Edits."

When you have the code looking how you want it to, click "Close."

And with that introduction, here are a few simple code hacks to help you customize your Blogger blog.

Making Modifications to Code
Let's start with something simple.

You can remove that pesky border around inserted images. Change whatever values are in your template to match the bolded text below.

Variable name="image.border.small.size" description="Image Border Small Size" type="length" default="2px" value="0px" 
Variable name="image.border.large.size" description="Image Border Large Size" type="length" default="5px" value="0px"
background: $(image.background.color);border: 0px solid $(image.border.color);

Here's a few more hacks:

You can also read my post over on my Rather Geeky blog for more tips, '5 Ways to Make Your Blogger Blog Not Look Like, uh, a Blogger Blog'.

Questions? I'd be happy to help. Leave a comment below.

No comments:

Post a Comment