April 12, 2008

15 Stylish Ways to Make Your Posts Stand Out

While there are many ways you can style your blog template to make it look more appealing to your readers, many bloggers pay little interest to styling their blog posts.

Long monotonous blocks of text can appear boring, but there are many different techniques you can use to make your posts more stylish, interesting and ultimately more compelling to your readers.

Here are fifteen different techniques including some which you may not have considered using before!

Textual Effects

Styling areas of your text in an unusual way helps draw attention to important sections of your posts.

Here are a few examples of how you can add stylish textual effects to your posts:

Bold, Italic and Colored Text

These are the simplest of all textual effects, though such effects should never be underestimated!

Bold text, for example, reinforces important words or sentences in your article and adds a sense of authority.

You can easily make text bold, italic or in a different color by highlighting and choosing the relevant option in your post editing dashboard.

Use a different font style for your introduction

This is a style most prominently used in magazines, but that doesn't mean you can't also use it for your blog posts!

I first saw this in action online in Lisa Sabin-Wilson's blog, Just a Girl in the World:

Here Lisa uses a larger italic font for the first phrase or so of her posts which really makes them stand out!

To use a different font for the introductory phrase of your own blog posts, you can edit the HTML code of your posts by wrapping styled span tags around the phrase, like this:

<span style="font-size: 200%; font-style: italic;">Introduction here<span> and the rest of your post here...

Magazine Style Drop Caps

This is another typographic style which is typically found in magazines.

This can be achieved using inline CSS by wrapping the first letter of each post in styled <span> tags, like this:

<span style="font-size: 200%; float: left; padding: 0 5px 5px 0;">F</span>irst letter...
Here are links to articles which explain how CSS can be used to create drop caps in your blog posts:

Structural Effects

The overall structure of your blog posts can be stylishly presented. Here are some methods to make the structure of your articles more appealing to your blog's readership:

Blockquotes

Blockquotes are generally used for long quotations and are usually separated from the main body of text by indentation, italics or a different style of font.

Using CSS you can change the appearance of your post blockquotes as I wrote about in this previous article.

Here are some other useful references with regard to styling blockquotes in your blog posts:

Pullquotes

Pullquotes highlight a particular sentence or phrase of importance within an article; they are similar to blockquotes, but are generally aligned to the left or right of the main text.

A simple way to create pullquotes using inline CSS would be to wrap the text in span tags like this:

<span style="width: 200px; float: right; text-align: center; border-top: 3px solid #000; border-bottom: 3px solid #000; padding: 10px; margin: 5px 0 5px 5px;">Write the text for your pullquotes here.<span>

Here are some other useful resources which explain how to use pullquotes in your blog posts:

Use Headings

This feature is particularly useful when writing longer articles and is a technique I use frequently now in Blogger Buster.

Headings break up long sections of text into more manageable chunks, and help readers understand at a glance exactly what to expect from the consecutive section of text. Upper heading levels (eg: H1 and H2) should be used for titles, and are usually in a larger or bolder font. Lower levels (from H3 to H6) may be used as section headings.

Most bloggers use only headings from H1-H4 which are best used in the following sections of your blog and posts:

  • H1 for the blog title
  • H2 for your post titles (and possibly sidebar headings)
  • H3 for sub-headings in your posts
  • H4 for smaller sections within each sub-section of your posts

Headings are supported by all web browsers, and will appear in different font sizes even if you haven't added relevant styling code in the style section of your blog.

To make text appear as headings in your blog posts, you should wrap these in heading tags, like this:

<h2>This is Heading 2</h2>
<h3>This is Heading 3</h3>
<h4>This is Heading 4</h4>

These headings would appear something like this in your blog posts (depending on how you may have styled these headings in the style section of your template):

This is Heading 2

This is Heading 3

This is Heading 4

Hobo-Web has a great article about the use of headings in blog posts which makes for an interesting read!

Shaped sections of text

This is a rather unusual method of styling your blog posts, but it is certainly one which can attract attention! The method I'm using here is generated by CSS Text Wrapper, which you can use to shape areas of text into any shape you like! On the examples page, you can see circles, zig-zags and even a wine glass shaped block of text!

CSS Text Wrapper generates DIV's to shape your text according to the style you provide, and can even be used to trace the shape of an image! There are different options for adding this style to your blog posts, including inline CSS (the method I have used here) and JavaScript.

Check it out and let me know what you think about this unusual method of styling your posts.

Using Images to style your posts

Using images is one of the easiest and most effective ways of adding style and interest to your blog posts. Here are some different methods you could use with particular regard to imagery and styling images in your blog.

Use themed images throughout all of your blog posts

One of the most effective ways I've seen other bloggers add style to their posts is by using a consistent theme for images throughout all of their blog posts.

Probably the most striking example of themed images I've seen is featured in Kathy Sierra's blog, Creating Passionate Users. Here Kathy illustrates her concepts using black and white photographs of people which are highlighted with speech bubbles and colorful text.

 

You may also want to check out Woork and Skelliewag to see other examples of consistent image themes throughout their blog posts.

Frame Your Images With CSS

I've always thought that photographs presented in frames look much better than those simply stuck to the wall with sticky tape, and the same can apply to images in your blog posts too!

Recently I've begin adding "frames" around the images in my posts by adding inline style to the images, like this:

<img src="http://url-of-host.com/image.jpg" alt="Alt text" style="border: 3px solid #ccc; padding: 5px; background: #fff;" />
If you use Blogger's image upload feature to add images to your posts, you can simply add these style references to the style already present in your image code, like this:
<img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand; border: 3px solid #ccc; padding: 5px; background: #fff;" src="http://bp2.blogger.com/_xn2gmPb9TfM/R_0Ut_hk2EI/AAAAAAAABTs/Tx5T5KNXqs4/s400/typography.jpg" alt=""id="BLOGGER_PHOTO_ID_123456789012345678" />

You can change the border and background colors to suit your own template design which will create a style of image framing that is all your own.

Add Captions to your Images

An example of a caption

Adding captions to your images is a useful way of adding interest or styling the attribution text. This post explains how to add captions to your images in Blogger posts. If you would prefer to add these captions dynamically to every image, check out this article by 1976 Design.

Using Drop Shadows to Highlight Your Images

A really interesting way to style your images is to use drop shadows, like this:

The easiest tutorial I have found for this so far is at 1976 Design, where you can download the full source code and example images to add drop shadows to images in your own blog posts.

This technique works by adding a background image to the DIV section which holds your image, and adding style to the image (negative margin values) which draw the image up and away from the DIV edges.

Use different backgrounds for each post

It's actually quite easy to use a different background color or image for each blog post. Simply edit your posts in Edit HTML mode, and add div tags around your content which contain style tags for the background properties. To add a colored background, you could use code like this:

<div style="background: #fdd2f3;">
The content of your post goes here
</div>
If you would prefer to use an image background, you could style your DIV tags like this instead:
<div style="background: url(http://the-url-of-your-image.com/image.jpg);">
The content of your post goes here
</div>
Vin of Dummies Guide to Google Blogger wrote a more in depth article about this which offers more specific advice for Blogger users.

Yet more Stylish Techniques for your Posts!

These last few ideas were a little more difficult to categorize, though they are undoubtedly fun and useful additions for your blog posts!

Automatically add icons beside your links

This is another technique which intrigues me (and one which I'm considering adding to Blogger Buster in the near future).

This technique uses CSS with HTML selectors to add icons automatically beside your text links which are relevant to the file or page you are linking too.

The best tutorial and download files I have found for this was written by Alexander Kaiser of Poolie Studios and I would really recommend anyone interested in adding this functionality to their blog to check out his project page!

In the near future, I'll probably write a tutorial explaining how to add this functionality to your Blogger powered blogs too.

Add Relevant Information about Internet Companies with StartFound Widgets

StartFound is a really useful service which allows you to embed a widget in your posts with relevant information about internet-based companies you may discuss in your articles.

It's free to use and you doesn't include obtrusive branding which other such widgets may contain. What's more, it's incredibly easy to use: simply click on the plus symbol in the top left-hand corner of the company you wish to add, then copy/paste the code presented on the next page.

Zemanta (Content Suggestion Engine)

I wrote about Zemanta a short time ago and am so far impressed by how well this engine works. Zemanta offers a few different methods to spice up your blog posts, including image thumbnails, articles, links and tags for your posts.

Zemanta works as a Firefox extension and automatically adds suggestions to the right of your post editing page when you are creating a new post.

You can read more about Zemanta and download your Firefox plugin on the Zemanta website.

Final Thoughts

I hope you've enjoyed reading through this list of techniques to add pizazz to your regular blog postings! If you have any other ideas, please share these by adding your comments below.

If you've enjoyed this article, please consider subscribing to Blogger Buster and be updated of new articles when they are posted.



View blog reactions


Related Posts by Categories



Post a Comment 14 Comments:

12 April 2008 12:36 Wangbu said...

When I started blogging, I found Blogger so simple. But I still used its template due to lack of funds to run a more attractive self-hosted Wordpress template. As I blog along I found interesting blogger designs. Thanks to people like you who keeps on revolutionizing blogger. All the above information are understood and will be experimented by me in the future.

12 April 2008 14:23 BobbyT said...

hi amanda, this post is wonderful, of course the rest are good too, but I am really in need of some inspiration from this piece to spice up my blog posts. thank you, and i stumbled it! expect some SU rushes hehe, I am sure SU users will find this post interesting too!

12 April 2008 17:35 The Ward Family said...

I just visited yesterday and implemented your frequent commenter's widget (it's great). I also enjoyed this post. If you stop by you will now find a link to blogger buster in my favorites. Keep up the good work.

13 April 2008 03:27 Rajeev Edmonds said...

Great tips to make post more appealing to readers. Earlier I implemented your summarized post hack on my blog, and it is working smoothly. Yesterday I have subscribed to your RSS feed. I have also placed your ebook link on my home page. Keep up the good work.

Chow..

13 April 2008 05:00 a husband said...

Great post. I would say to be careful with stylizing though...I see too many people who think their blog is the same as a MySpace page, and it just looks awful. Often I even see colors you can't even read against whatever background the have chose.

But all these tips were great (and some I just didn't even think of). Thanks!

13 April 2008 12:48 Amanda said...

For Wangbu: Thanks for stopping by! I'd like to think that Blogger hosted blogs have just as much potential as Wordpress hosted ones as I'm sure you'll agree. Feel free to let me know if there are any particular features you'd like me to include on the site, I'm always open to suggestions :)

For Bobby T: Thanks for the stumble! I hope to write about SU more often in the future too.

For The Ward Family: I'm glad you like the top commenters widget. Later today I'll be writing about the popular posts widget too which I hope you'll find useful.

Thank you for the link :)

For Rajeev: I'm very happy to know you find my posts useful! The ebook is probably my favorite feature of this site so far, so I'm honored to have this featured in your sidebar.

For A Husband: I understand what you mean about poor designs, especially when it becomes difficult to read the text! One of the posts I have planned for the future will cover the use of fonts and colors for legibility, which hopefully will help pthers understand the values of contrast and readability.

I'm glad to know you enjoyed this post though. Originally this began as "5 methods" but the number quickly rose as I began to research!

Thanks for stopping by :)

13 April 2008 16:13 podxien said...

As usual a smashingly exciting post!
Thanx a lot I am trying almost every feature!!!

15 April 2008 20:58 Kashif said...

Amanda that was simply marvelous post . I will keep visiting so keep them coming :)

16 April 2008 00:46 Dette | Dance of Motherhood said...

WOW! These are very cool - I'm definitely adding you to my reader. :)

Thanks for sharing!

03 May 2008 19:44 pay it forward said...

Hi Amanda,

I just stumbled across your blog and realized how truly "lost" I am in a virtual sea of bloggers. I hardly know where to begin but will re-read everything in an attempt to gain credible identity as a blogger with something worth saying (reading).
While the task seems presently daunting (I'm recovering from major eye surgery), I'm confident that I can effectively use your tips and techniques to create something that people actually want to read (and, more importantly, be inspired to take ACTION in their own lives)in raising "awareness" and co-creating "A New Earth (Eckhart Tolle)."
I will subscribe to your feed and plan to visit your site often in the days ahead. Thanks a million! Jerry Koch: www.MoreGreatNews.blogspot.com

04 May 2008 11:56 Anonymous said...

The Great thing about your site is that your tips are working!

very very useful! Thank u!

08 May 2008 10:38 jellybelly*jellybrain said...

I have a really simple problem, but cannot get any coding to work? The post title font size on my blog is really tiny and I want to change the size so the titles really stand out. I have searched the internet and tried changing the font size in .post h3 to 2000% (!) and it still stays tiny?! Any tips? I am using minima

15 June 2008 23:52 Allison said...

I want sooo very much to understand and use the drop caps and/or the 1st couple of words like the Lisa Sabin Blog. I am not understanding this. Where exactly do you put introduction? Where it says introduction here? In the <>instead of span. I have tried everything, I just am not understanding. I won't apologize for sounding stupid. LOL!!! I already feel that way!!! There are no stupid questions, everyone must learn somewhere.I know you are sooo busy and I read you daily . I have already learned so much from you. I have you down as one of my favorite links, even tho' I have a woodworking blog.Thank You,
Allison,
http://willowshimmerswoodworks.blogspot.com

16 June 2008 19:32 FinnFactory said...

is it me or is Dummies Guide to Google Blogger blog a visual mess...

Post a Comment