Removing Page Titles from Atlantic Theme

Solved

Removing Page Titles from Atlantic Theme

dlgillihan
Excursionist
14 0 5

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

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10202 2422 3068

This is an accepted solution.

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;
}
  • And Save.
  • Result:
  • Made4uoRibe_0-1745955084748.png

     

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
10202 2422 3068

This is an accepted solution.

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;
}
  • And Save.
  • Result:
  • Made4uoRibe_0-1745955084748.png

     

 

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

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
dlgillihan
Excursionist
14 0 5

Thank you!

dlgillihan
Excursionist
14 0 5

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!

Screenshot 2025-05-12 at 4.23.14 PM.png

Made4uo-Ribe
Shopify Partner
10202 2422 3068

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:

Made4uoRibe_1-1747136833183.png

 

 

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

 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
dlgillihan
Excursionist
14 0 5

Thank you!