Hey !
I am trying to edit the headline on the products page
See screen-shot. Anyone has any idea of where to change the text ?
Hey !
I am trying to edit the headline on the products page
See screen-shot. Anyone has any idea of where to change the text ?
Hello,
if the theme does not allow you to modify the title you can put CSS code in theme.liquid (see doc). Here is an example:
#mytitle::before{
content: "new title";
display:inline-block;
visibility:visible;
position:absolute;
}
#mytitle{
visibility:hidden;
}