Hello! How do you delete the text box in the slideshow banner? I want the text to show only without the background. Thank you!
Hi @cherryjaneq ,
Please share your store URL and password if it’s password protected so I can have a closer look.
Looking forward to hearing from you.
Hi @cherryjaneq ,
Please send your site and if your site is password protected, please send me the password. I will check it.
Hi there! Thank you so much! But I have solved it already today! Thank you for responding. But I have a new problem that I don’t know how to solve. I need to make the product title to be just in one line on mobile view. Please see the screenshot I’ve provided!
Here is the URL Link and PW:
https://loula-eve-aromas.myshopify.com/
yeuwea
Hi @cherryjaneq
I’m Richard Nguyen - CRO Expert at PageFly- Free Landing Page Builder.
You can try with this code.
Follow this:
Go to Online Store->Theme->Edit code->component-cardt/base.css->paste bellow code in bottom of file
@media screen and (max-width: 767px){
.card-information__text.h5{
font-size: 12px !important;
}
}
If you feel my answer is helpful, like it or mark it as a solution. Let me know if you have any questions.
Best regards,
Richard | PageFly
Hi,
To make the product title in a line, please add the code below to assets/component-card.css file.
@media screen and (min-width: 750px) {
span.card-information__text.h5 {
white-space: nowrap;
}
}
@media screen and (max-width: 749px) {
span.card-information__text.h5 {
white-space: nowrap;
font-size: 13px !important;
}
}
The line break will be disabled by the code below.
white-space: nowrap;
However, the default font size is 14px and it will be a bit too big for mobile view.
If you resolve the issue, please click “Like” and “Accept solution”.
If you still have the issue or have any questions, please let me know.
Hope it helps.
Thanks.
Hi @cherryjaneq ,
Did you solve it?
Thank you for the response. It’s working now
Thank you!

