To add a border to your sidebar, you can take a look around line 1435 in your css for – “.sidebar” and add in code similar to this –
`.sidebar {
border-left: 1px solid #12335e;
display: inline;
float: right;
font-size: 0.875em;
line-height: 1.5em;
padding-left: 20px;
width: 280px;
}`
Notice I added “border-left” (the border itself) and “padding-left” (to add space to the left of the sidebar)……you can start off with this and make your adjustments as needed.