Hi,
Where can i change all these individual space amounts? Thanks for your help David; im struggling with this one abit.
You can adjust the width of left and right sidebar through Dashboard > Appearance > Customize > Layout > Sidebars. You should see something like this – https://share.getcloudapp.com/eDuPOPAQ
If you prefer to use fixed pixel values, you’ll have to use Custom CSS w/ these selectors:
#right-sidebar { width: 300px; }
#left-sidebar { width: 300px; }
For the content container, you can use #primary or .content-area.
Example:
#primary { width: 950px; }
or
.content-area { width: 950px; }
And as for the container that wraps both the content area and the sidebars, you can control it through Dashboard > Appearance > Customize > Layout > Container and set the Container Width which sets its max-width.