Hi there!
I am using Brooklyn theme and I added my subscription in the footer.
However, the “SUBSCRIBE” button changes when using a mobile device.
How can I delete the arrow and have “SUBSCRIBE” button instead?
Adding screenshots for a reference.
Thanks in advance!
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >theme.scss.css and paste this at the bottom of the file:
@media screen and (max-width: 590px){
.newsletter--form .newsletter__submit-text--large { display: block;}
.newsletter--form .newsletter__submit-text--small{ display: none;}
}