How can I adjust the max page width in the Baseline theme?

Hi there!

I am currently building our online store. The Baseline theme is absolutely nice - all options we need are there, except the possibility to adjust the page width.

I spent several hours right now and tried many options, but without results.

Can please somebody help me and guide me how to make this?

Best regards

Emoclew

In the CSS file, search for a CSS selector that targets the container or element that sets the max width. It might be something like “.site-container” or “.page-wrapper”.

Once you find the appropriate selector, modify the CSS to adjust the max width according to your preference. For example, to set the max width to 1200 pixels, you can use the following CSS code:

.site-container {
  max-width: 1200px;
}