From Website to Blog (Part 4)

Let’s continue with the series I started on how to transform a website into a blog, the idea being that blog will attract more traffic because of its more interactive nature and because search engines really like them. If this is your first encounter with the series, you’ll find the previous posts here:

As well, there’s a little aside to the series on what to do to configure WordPress immediately after you install it that is also of interest.

Choosing a Blog Theme

When we left off last time, I promised we’d discuss blog setup in some more detail. I’ve mostly done that in the aside mentioned above, but I wanted to go over some of the more concrete steps with an actual blog used as an example.

The site we’re transforming is a silly little site I create over a year ago called “No Debt Is Good”. It started out as a single-page site about debt-free living and ended up with a few pages on it. Nothing fantastic, I was using it mostly to demonstrate the concept of a single-page AdSense site and now I’m “sacrificing” it for the greater good. Actually, my mortgage is up for renewal in October and so I’ve suddenly developed a real interest in getting rid of debt, so this topic is very much a propos.

One of the most difficult things for me when I’m creating a new blog is deciding what the blog will look like. If I were a spammer, I wouldn’t care one bit, but as a general rule I like to use blog designs that look good and still manage to blend in the AdSense ad and link units quite nicely. There are literally thousands of WordPress themes out there to choose from, so this is not an easy task. Lately, however, I’ve been finding myself using Brian Gardner’s free WordPress themes as a starting point. This blog uses a variation of his Silhouette theme, for example. After much deliberation, I chose to go with a variation of his Vertigo Blue theme for No Debt Is Good.

A Fine Balance

Brian’s themes are nice for several reasons. One is that he uses proper semantic markup throughout the themes. Unlike most themes, the blog name is not wrapped in an <h1> tag at the top of the page. The <h1> tags are in fact reserved for the titles of the blog posts and the individual pages. Another reason I like them is that they’re ready for monetization: adding AdSense to his themes is pretty easy.

Now, where you place your AdSense ads and how many you place on the page is one of those things that AdSense publishers debate quite heatedly. On this blog, for example, I try to make the AdSense unobtrusive: there’s a link unit at the top and the individual post pages have a half-banner ad as well. That’s pretty much it. This works well for me because I know that my regular readership isn’t likely to click ads anyhow, so there’s no point in obscuring the content just to get a few more clicks in. For some topics the minimalist approach makes the most sense, especially when the ad inventory is relatively small and/or the bid prices for ads falls quickly after the first two or three ads. (See Uncommon AdSense for a detailed explanation of why.)

But when you’re in a competitive topic space and/or you’re not so much interested in a regular readership, try a more aggressive approach to AdSense ad layout. This is what I’m doing with the modified Vertigo theme on No Debt Is Good. I’ve taken the big “V” graphic out and replaced it with an ad unit. I’ve also embedded an ad unit right at the start of the content and inserted one immediately after the content. The theme isn’t done yet, as I still need to create a for the header and tweak a few other things, but it’s mostly there at this point.

Static Home Page or Not?

As you transform your site into a blog, one of the decisions you’ll have to make early on is whether the new blog should look like a website or look like a blog. If the former, you’ll want to use a “static page” (a WordPress page, as opposed to a post) as the home page. If you want it to look like a blog, you’ll want a conventional blog home page with blog postings on it.

I’m going for the static page, but I haven’t enabled it just yet. I plan on using the SEO siloing technique to finely target the ads on the various pages, so I need to create a few categories first and create some landing pages for those categories. Using static pages fits very well with the siloing technique.

There’s another reason to stick with a website feel as opposed to a blog feel, and that’s when you don’t plan on updating the site very much. Users expect blogs to be updated on a regular basis. If the site doesn’t look like a blog (even though it is) they won’t necessarily be looking for regular updates. Be sure to drop all the date references (as in “posted on …”) from your theme in order to reinforce the website feel and to not make the content appear to be outdated.

Stay tuned for more…

Sponsored Link: Want an interesting and mostly unobtrusive ad effect? Try Peel Away Ads. You can see one in the top right corner of the page. Easy installation on any site.

Eric Giguere is the author of Uncommon AdSense and the award-nominated (that just means it lost!) blog Make Easy Money with Google and AdSense.

How Does Google Do Rounded Corners On Its Ads?

Now that rounded corners for AdSense ad units have arrived, I was curious to see how the corners were being done. There are three general ways to do rounded corners, and each have their drawbacks. The simplest way is to use images for the corners, but then you have to create new images for each color combo you’re using. The more sophisticated approaches use JavaScript and/or CSS, but then you run into problems with inconsistent browser support and/or longer execution times. See the CSS Rounded Corners Roundup for a good listing of the various techniques.

As it turns out, Google is using JavaScript and CSS to create the rounded corners. I pared everything down to the basics and came up with this “simple” example:

You can view the source code here — use the “view source” option on your browser to see it, of course. Most of the magic is in a JavaScript graphics library that Google has created, which is not included in the test file.

The technique they’re using works well for AdSense ad units because the ads are embedded on pages using <iframe> tags (that’s what the JavaScript that Google generates for you eventually does) and are of fixed width and height. This lets them use CSS’ absolute positioning feature to precisely place the borders and everything else. As a general technique it’s probably not something you’d use on your own site, especially for the more fluid (non-fixed) elements of your page layout.

Still, interesting stuff!

Sponsored Link: Want an interesting and mostly unobtrusive ad effect? Try Peel Away Ads. You can see one in the top right corner of the page. Easy installation on any site.

Eric Giguere is the author of Uncommon AdSense and the award-nominated (that just means it lost!) blog Make Easy Money with Google and AdSense.

New AdSense Feature: Rounded Corners

So rounded corners are now available to AdSense publishers as a new format option. Rounded corners are the quintessential “Web 2.0″ feature, of course, so this is mostly of interest to publishers who build sites that use lots of rounded corners. For most of us I don’t think it will make a big difference because we turn the borders off — making the roundness or squareness of the borders irrelevant.

What I find most interesting is how the AdSense code has changed to reflect this new feature. A new property is set, as in this example:

google_ui_features = "rc:6";

If you don’t choose any corner style, that line gets left out. Values so far are “rc:0″ for square corners, “rc:6″ for slightly rounded corners, and “rc:10″ for very rounded corners. Out of curiosity (don’t try this at home, folks — remember that you’re not supposed to modify the generated code), I tried different “rc” values and they all resulted in square corners.

It’s interesting that Google chose to implement a “google_ui_features” variable instead of something like “google_rounded_corners”. It looks like they’re going to stuff more user interface (“ui”) features into that one parameter. Wonder what’s next?

Sponsored Link: For only $7.50 learn How to Quickly and Easily Get “.edu” Backlinks to your sites. No fluff, no special software required.

Eric Giguere is the author of Uncommon AdSense and the award-nominated (that just means it lost!) blog Make Easy Money with Google and AdSense.

← Previous PageNext Page →