Hello Shopify Community
I would like to write there Add to Chart /Basket instead of Select options, where can i change the codes ? or any update you suggest ?
url: zuschlafen.de
Hello Shopify Community
I would like to write there Add to Chart /Basket instead of Select options, where can i change the codes ? or any update you suggest ?
url: zuschlafen.de
Hi @Zuschlafen ,
This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/quick-add.css->paste below code at the bottom of the file:
.quick-add__submit {
visibility: hidden;
}
.quick-add__submit:after {
content:'Add to Chart';
visibility: visible;
display: block;
position: absolute;
padding: 15px;
top: 3px;
}
Hope my answer will help you.
Kate from PageFly Team
Thank you for solution!
Hey @PageFly-Kate
I added the code, seems, it’s ok for desktop version but for mobile version, there is an issue. Would you check please. (text is not literally in the button box)
Hi @Zuschlafen ,
You can add this code below, it will be compatible for both mobile and desktop:
@media (min-width: 768px){
.quick-add__submit {
visibility: hidden;
}
.quick-add__submit:after {
content:'Add to Chart';
visibility: visible;
display: block;
position: absolute;
padding: 15px;
top: 3px;
}
}
@media (max-width: 767px){
.quick-add__submit {
visibility: hidden;
}
.quick-add__submit:after {
content:'Add to Chart';
visibility: visible;
display: block;
position: absolute;
display: flex;
align-items: center;
justify-content:center;
}
}
same problem, now text is outside of box ![]()
Problem was on mobile device. But thanks for your help, i decided to move the button
Hey, how can I change the image size of the Collage section of Refresh Theme?
Also how to place the menu in centre and logo on left?