I wanted to hide the page titles from displaying on the page, and I found this code which successfully removed them:
.post-title.cufon_headings {
display: none;
}
But, this also removed ALL of my blog post titles. I deleted the code above, and added this code to attempt to hide the page titles:
#top.home .post-title {
display: none;
}
The 2nd code worked, but only for the static homepage. I tried the same code for the other pages, but no results . . .














