Hey Shannon,
Here’s what you need to do. If you want to change the left sidebar (sidebar 1) to something like 250px, you need to add this to custom CSS:
.sidebar.s1 {
width: 250px;
}
.col-3cm .sidebar.s1 {
float: left;
margin-left: -250px;
}
.col-3cm .main-inner {
padding-left: 250px;
}
.content {
background-color:#fff;
}
If you want to make it even more narrow just change the number.
Hope this helps.