How to remove the random 'page' box from the top of all pages on Dawn theme?

At the top of all my pages there is a random random box called “page” and i cannot delete this, what is this? and how do i remove this?

theme:dawn

website:desire-online.net

hello @jakegrieveson

You can add code by following these steps to remove unwanted section on page

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code at the end of theme.liquid

#shopify-section-template--20844446155042__main { display:none !important; }

1 Like

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
div#shopify-section-template--19958073164066__main {
display: none!important;
}
.title-wrapper--no-top-margin > .title {
color: #000;
text-align: center;
}