Removing Page Titles from Atlantic Theme

Hello all,

I am looking for a way to remove the page titles from my site so there will be no duplication when I place them in the slideshow that I am using for it’s header. I have found a way to remove them from the collections, but unable to find a way to remove them from the pages. Any help would be appreciated!

www.poppedartisan.com/pages/wholesale

Hi @dlgillihan

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
.page-title h1 {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you!

Hello.

Your solution worked perfectly, but I see page titles on a couple of the mobile versions of my website. Can you assist in a way to remove them?

Thank you!

Oops, I missed that. I didn’t check how it looks on mobile, follow the same steps. For adding the code below.

@media (max-width: 719px) {
    .page-title .label {
        display: none;
    }
    .page-title {
        padding: 0px !important;
    }
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you!