Lines or space between post excerpts and overall size
-
Hello,
I was wondering if there is any way to add a separating line between the excerpts of my blog posts as they appear in the blog roll – or if the space between the excerpts can be decreased…that would be great!
I was also wondering if there is any way to increase the width of the whole blog; including the content, or at least the side bar.
I already have the custom CSS upgrade.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
I was wondering if there is any way to add a separating line between the excerpts of my blog posts as they appear in the blog roll.
One way would be to add a bottom border to the bottom of posts like this:
.entry { border-bottom: 1px dotted #999; } -
or if the space between the excerpts can be decreased…
To remove some of the space from below posts on the Linen home page, add this to your Appearance → Custom Design → CSS editor:
.post { margin-bottom: 10px; } -
I was also wondering if there is any way to increase the width of the whole blog; including the content, or at least the side bar.
Here’s one way to do that:
#content { width: 70%; } #sidebar { width: 20%; } -
- The topic ‘Lines or space between post excerpts and overall size’ is closed to new replies.