Re: Remove all products page title

Solved

How can I delete the 'Product' h1 title from my collections page?

imabyssal
Excursionist
18 0 6

Hi, I need to remove "Product" h1 title from the following page: https://imabyssal.com/collections/all

can anyone help me?

imabyssal_0-1662143752320.png

 

Accepted Solution (1)

made4Uo
Shopify Partner
3851 717 1195

This is an accepted solution.

Hi @imabyssal,

 

Please follow the instructions below. The code is section specific and only applies to the certain page. 

 

1. From your Admin Page, click Online Store > Themes >Actions > Edit code
2. In the Asset folder, open the theme.css
3. Paste the code below at the very bottom of the file.

 

#shopify-section-template--16039496581364__main > div > h1 {
    display: none;
}

 

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free

View solution in original post

Replies 3 (3)

made4Uo
Shopify Partner
3851 717 1195

This is an accepted solution.

Hi @imabyssal,

 

Please follow the instructions below. The code is section specific and only applies to the certain page. 

 

1. From your Admin Page, click Online Store > Themes >Actions > Edit code
2. In the Asset folder, open the theme.css
3. Paste the code below at the very bottom of the file.

 

#shopify-section-template--16039496581364__main > div > h1 {
    display: none;
}

 

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
imabyssal
Excursionist
18 0 6

Hello, thank you for you fast reply, I followed your steps but it did not work...

imabyssal
Excursionist
18 0 6

worked! I added !important .. thanks!!