How can I hide a page title and change the background color?

Hi! Is there a way I can hide the page title of a page so that only the page content shows?

I was also wondering how to change the background color of an entire page?

Thanks in advance for your help!

Preview link for the page I’d like to edit — https://sltlcqjgowy3hosq-34286665866.shopifypreview.com

@KyCarra

which page title hide . Please share page url!

Thanks!

hello @KyCarra

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

body.prestige--v4.features--heading-normal{
	background: #a7a2a2;
}
#shopify-section-1624499288ebd0e9e2 .Container h3.SectionHeader__SubHeading , #shopify-section-1624499288ebd0e9e2 .Container h2.SectionHeader__Heading{
    display: none;
}

in theme.css you can add this code:

body.prestige–v4 {background-color: #dacdcd;}

h1.SectionHeader__Heading { display:none; }

Hi,

I’m only trying to hide the heading/title on the “our story” page.

& I’d like to change the background color of that page only!

Here is the link to preview the page: https://sltlcqjgowy3hosq-34286665866.shopifypreview.com

hello @KyCarra hide the heading/title on the “our story” page.

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.template-page .SectionHeader.SectionHeader--center .SectionHeader__Heading.Heading {
      display: none;
  }
 .template-page  {
          background: #f3f0f0;
  }