Reputation: 14800
My font titles with cufon are cut on top and moved up, any ideea? Maybe it's a css problem, I don't know, but I could not figure out.
Upvotes: 0
Views: 345
Reputation: 53238
Add a 3 pixel margin to the top of the h3
elements:
h3 {
font-size: 25px;
color: #281c17;
letter-spacing: -1px;
line-height: 1.2em;
margin: 3px 0 27px 0;
}
Upvotes: 1