Open style.css and add the border to your content div:
Code:
#content {
width: 500px;
padding: 0 40px 0 0;
float: left;
border-right: 1px dashed gray; /* add right side border */
}
Now change the padding to make room:
Code:
#content {
width: 500px;
padding: 0 20px 0 0; /* decrease right padding */
float: left;
border-right: 1px dashed gray;
}
And add some to the sidebar:
Code:
#sidebar {
width: 230px;
float: left;
padding-left: 19px;
}
Let me know if that works.

Originally Posted by
Dusibello
I'd like to set off the sidebar from the main column content with a vertical border on the left side of the sidebar.
Anyone know how to do that?
Many thanks, and great work on this theme!
Bookmarks