The post is in a div with class=’excerpt preview’. In the CSS is:
.preview {
border-bottom: 1px solid #DFDDD5;
put ‘border-bottom: 1px solid #ccc;’ to the div that holds the posts (in style.css, the name of the div depends on the theme you are using)
Is it in here
/*- Single Post Page -*/
The place to put the border-bottom css is probably style.css, as alchymyth said.
You have to find the div tag that encloses your posts, and use its class, or add a class to it if it does not have one.
Where it is located depends on your theme, and the screen you are viewing. If you post a link to your site, and tell us which page (Home, etc) you need to modify, we might be able to give you more exact directions.
a link at last 😉
(working with a live link makes answering questions about css so much easier)
in style.css, change #centercol .post from:
/*- Post -*/
#centercol .post {
height: 1%;
padding-bottom: 40px;
}
into:
/*- Post -*/
#centercol .post {
height: 1%;
padding-bottom: 15px;
margin-bottom:25px;
border-bottom:1px solid #ccc;
}
you can play with the numbers, and the color 😉
Thanks alchymyth:
This did the trick !
Glad it’s fixed. Please mark this topic ‘Resolved’.