Prestige Theme - Hide name of featured collection

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:

1 Like

Hi @Med7

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:
.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;
}

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

1 Like