Looking for Help Editing the Sunrise Theme

The desktop has 2 columns.

A left “side bar” for lists of menus and then a larger main section.

I want to remove the section on the left for desktop.

I’m happy to pay for this, if someone can do it.

Hi @AppleSauce999

Is this a column section or a header? Would you mind to share your store URL? Thanks!

This is a link to it in the app store.

https://themes.shopify.com/themes/sunrise/styles/beach-hut

its that section on the left. with the menu for clothing etc.

Hello.
Our team is ready to help you.
Please share your website address and access password (if necessary) so that we can check and assist you.

I get it, check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

div#shopify-section-sidebar {
    display: none;
}
section#main {
   width: 100%;
}

And Save.

result:

Or add the code in the theme.liquid.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “theme. Liquid” file. Find the tag and paste the code below before the tag.


And save.