Hi there,
This code should do it:
.site-main {
width: 100%;
border-right: none;
}
However, be careful of making the content area too wide. Having more than 70 characters display on a line can have a negative impact on the readability of your content.
Alternatively you can just remove the sidebar and center the content instead:
.site-main {
border-right: none;
float: none;
margin: auto;
}
Forgot to add – you can add the CSS to the Additional CSS section in the Customizer.
Thanks so much, KokkieH! Both of those solutions seem to work, so now it’s just a matter of figuring out which looks best once I get the content in place. I appreciate your speedy assistance!