Hi,
I use the Prestige theme but I cannot seem to toggle of the title of the collection. Does anybody know how I can hide it? Other question: will the hiding hurt my SEO for that word? This is my shop:
Hi,
I use the Prestige theme but I cannot seem to toggle of the title of the collection. Does anybody know how I can hide it? Other question: will the hiding hurt my SEO for that word? This is my shop:
Hi @Med7
Try this one.
.shopify-section.shopify-section--featured-collections h2.h2 {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
And Save.
Result:
This code uses the screen reader-only technique to hide content visually without risking SEO.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!