• Resolved Russ Williams

    (@w3designstudios)


    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.

    https://v2.1stassembly.org/wordpress/

    Thanks,
    Russ

Viewing 3 replies - 1 through 3 (of 3 total)
  • resiny

    (@resiny)

    wrap the post in a div (usually .post)

    .post {
    margin-bottom: 2em;
    }

    Thread Starter Russ Williams

    (@w3designstudios)

    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?

    Thread Starter Russ Williams

    (@w3designstudios)

    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;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to Separate Entries with Spacing’ is closed to new replies.