Tagged: width
Hi, I’d like to adjust the width of the sidebar vs main body–there is too much space between nav items and the content and it looks strange. How can I do this–CSS or otherwise?
Login to your admin dashboard and go to the Appearance > Customizer > Additional CSS and paste below custom css code:
Appearance > Customizer > Additional CSS
@media only screen and (min-width: 768px) { .site-header, #secondary, #page:before { width: 20%; } #content { width: 80%; } }
Note: Change the digit value above to modify the width of the sidebar and main body.