Reducing the padding and margins in Sense Theme

I am wanting for the contents on the Home page to take up more of the screen instead of the being centered. How can that be fixed for the Sense theme?

Hello @Wesmorbeauty :waving_hand:

In Shopify Admin, you can go to Themes, Edit code, open file base.css and add this code snippet at the bottom

.page-width {
    max-width: 1500px !important;
}

You can modify the max-width value as you need.