Today I’m going to round out my series on letterpress with a tutorial on how to get a letterpress effect for type by using CSS only. This technique is going to make use of the text-transform property in CSS that is viewable in recent versions of Firefox and Safari. It won’t work, in other words, [...]

From the category archives:
CSS
By default, Thesis has the option to feature previous/next post links on single entry pages. You can activate or deactivate this option through the Thesis Options panel on your WordPress Dashboard. Here’s the code that is controlling how it looks in the picture above.
.prev_next {
border-style:solid;
color:#666666;
letter-spacing:1px;
text-transform:uppercase;
}
.prev_next a {
text-decoration: none;
}
.prev_next a:hover {
text-decoration: underline;
}
I can style this [...]
TWEET THIS


