Russ Williams
Member
Posted 6 years ago #
I have setup the following site using WordPress as a news solution, but am trying to figureout how to give some separation for the articles that are listed on the page below. I just need a Breaking Space in between.
http://v2.1stassembly.org/wordpress/
Thanks,
Russ
wrap the post in a div (usually .post)
.post {
margin-bottom: 2em;
}
Russ Williams
Member
Posted 6 years ago #
I currently have the site designed in Tables. Should I simply apply the .post as a span or a class tag to the current cell that it's in?
Russ Williams
Member
Posted 6 years ago #
I ended up using the following code:
<tr class="post">
<td>
Then in the CSS I had the following defined:
.post td {
padding-bottom: 2em;
}