Hello,
Just so I’m on the same page as you, you’re referring to the right sidebar on the all of the other pages besides “Home” correct? With Recent Posts, Recent Comments and all that? If so, there’s a couple different ways to go. You should change the pixel width value of the class “sidebar” or change the percentage width value of the class “grid_8”. If you haven’t already, it’s generally recommended to use a child-theme when making changes. This way, if the theme is updated by the creator, then your changes remain and won’t get overwritten. Please let me know if this helps or if you have any other questions.
CSS you would add is something like this:
.sidebar {
width: 300px;
}
Or:
.grid_8 {
width: 30%;
}
If you go to Appearance > Theme Options > Styling Options, you can add CSS there and play around with it until you get the desired results. Again, please let me know if you have any questions.
Andrew