(Squarespace) Add text "See store for pricing" under product name on product page

To add text “See store for pricing” under product name on product page, like this.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or send me an email.

div.grid-title:after {
    content: "See Store for pricing";
    font-size: 16px;
    color: #000;
    display: block;
    font-weight: 600;
}

If you want to make this text appear on hover product, use this new code.

div.grid-title:after {
    content: "See Store for pricing";
    font-size: 16px;
    color: #000;
    display: block;
    font-weight: 600;
    opacity: 0;
}
div.grid-title:hover:after {
    opacity: 1;
}

1 Like