Changing blog post line height in Chateau theme
-
I’m using the Chateau theme and I want to minimize the line-height of my blog posts to shorten the length of them a bit. I’ve used this code in the CSS to change the line-height but it doesn’t seem to go any smaller than 1em.
.post-entry span {
line-height: 1em !important;
}If I set it to 0.8em for example, nothing changes. How can I get a smaller line-height?
Here’s the link to the blog: http://boottique.wordpress.com/
The blog I need help with is: (visible only to logged in users)
-
Add this and decrease the percentage:
.post-entry p, .post-entry li, .post-entry dt, .post-entry dd, .comment-text p, .comment-text li, .comment-text dt, .comment-text dd { line-height: 180%; }In the future make sure you post CSS questions in the CSS forum, not the Support forum.
- The topic ‘Changing blog post line height in Chateau theme’ is closed to new replies.