Site logo

Archived topic

Add vertical 1px line between two columns

4 replies · Started by Alex on April 2, 2015

Viewing posts 1–5 of 5

Hi, I am using grid columns plugin per your suggestion in another post.. I made two columns 50/50, but I want to add a vertical 1px line between the two to separate them. Would you know of a somewhat easy way to accomplish this?

Your best bet would be to add a div inside the first column, like this:

[column grid="2" span="1"]<div class="right-border">Your content in here</div>[/column]

Then you can add this CSS and adjust the border color:

@media (min-width: 769px) {
      .right-border {
            border-right: 1px solid #DDD;
      }
}

My initial code should work if you add this:

body .column-grid .column {
      margin-right: 0;
      padding-right: 5%;
}
This archived topic is closed to new replies.