Hi there,
I am making my first Shopify webpage - its a tad trickier than I thought 
When I press on the SHOP page, there is a heading that says Catalog that I don’t want.
Any ideas how to get rid of it please?
I’m using the California theme.
Thankyou so much in advance 
Deb x
1 Like
@DebBrown
Welcome to the Shopify community!
Thanks for your good question.
Please share your store URL.
So that I will check and let you know the exact solution here.
.head h2 {
display: none !important;
}
Add this code in the bottom of california.css file.
- Navigate to Online Store->Theme->Edit code
- Asset->/california.css ->paste below code at the bottom of the file.
- Save it.
1 Like
Hi @DebBrown
To hide the text you can go to the file Assets > california.css and add the following code at the bottom
#all.template-collection .collection .head h2 {
display: none;
}
Thankyou SOOOOOOO much!! That has worked and you’ve no idea how relieved I am.
I have been struggling with this for weeks. You are awesome and I thank you so much!!!
Deb
Thankyou so much for your help!