Online Store editor session can't be published

Online Store editor session can't be published

StineBRA
New Member
5 0 0

I'm trying to remove the header title in my collection via css code. The code seams to work, but when I try to save I get an error, and can't save the session. How do I do this?

Replies 4 (4)

ennovative-it
Shopify Partner
148 20 19

Can you paste here the code you're trying to add?

instagram: e.nnovative
info@ennovative.it
collab@ennovative.it
StineBRA
New Member
5 0 0

For sure!

.collection-hero__inner h1,

.collection-title {

  display: none !important;

}

h1.collection-title,

.collection-hero h1 {

  visibility: hidden;

  opacity: 0;

  height: 0;

}

ennovative-it
Shopify Partner
148 20 19

try only this:

.collection-hero__inner h1 {
display: none !important;
}
.collection-title {
display: none !important;
}

instagram: e.nnovative
info@ennovative.it
collab@ennovative.it
StineBRA
New Member
5 0 0

The code doesn't remove the title, but it allows me to save the edit. Isn't it necessary to point out the visibility?