Tuesday, March 27, 2007

Getting Rid of the Underline

So, you may have noticed (or maybe not) that the ugly underline is gone from the posting titles. Here's how I did it.

1. Go to Template->Edit HTML
2. Locate text that is something like this:

h3.post-title a,
h3.post-title a:visited {
color: #000000;
}

3. Change it to this:

h3.post-title a,
h3.post-title a:visited {
color: #000000;
text-decoration: none;
}

The critical bit is
text-decoration: none;, which overrides what's in the template's CSS (I think).

3. Save the template.

No comments: