Hey,
Is there a option to turn off a title of every product ? example i want to remove the name "Klokker For Menn Armani AR11076 " … when it is shown on front page . So there would only be “Armani that is above and the price below”
photo :
https://gyazo.com/d167b8192ec90c608f8ecb492911d969
thank you for your answers
best regards,
Hi @divetka ,
You can try this code
- Go to Online Store-> Theme->Edit code
- Asset-> base.css ->paste the below code at the bottom of the file.
.template-index .card-title{
display: none;
}
1 Like
Amazing! Thank you - how to do it for collections aswell?
.template-collections .card-title{
display: none;
}
.template-collection .card-title{
display: none;
}