Hello, there is a banner on the homepage of my site (www.lotusmassagechairs.com) around shop now, pay later. It is not rendering/resizing correctly on mobile. Anyon know how to fix this?
Thanks
Issue: The homepage banner around “Shop now, pay later” on lotusmassagechairs.com doesn’t resize/render correctly on mobile (Forge theme).
Proposed fixes (CSS-based):
Notes:
Status: Solutions provided; no confirmation of implementation or resolution yet. Images/URLs are central to the fix.
Hello, there is a banner on the homepage of my site (www.lotusmassagechairs.com) around shop now, pay later. It is not rendering/resizing correctly on mobile. Anyon know how to fix this?
Thanks
Hi,
You can solve this in two methods,
First: make a new image for mobile view: and then add the following code into your theme style css file.
@media (max-width: 411px)
.image-with-text-overlay-template–16322873688249__164253557900d67a91 .section-img-txt-overlay__bg-img {background-image: url(//HERE ADD THE IMAGE URL); }
Let me know if you don’t know how to get the URL to help you with.
Second: you can shift the image to the left so it the text only appear by adding the follwoing code
@media (max-width: 411px)
.image-with-text-overlay-template–16322873688249__164253557900d67a91 .section-img-txt-overlay__bg-img {
background-image: url(//lotusmassagechairs.com/cdn/shop/files/Banner_Option_3.png?v=1628261192&width=420);
background-position: 100.0% 50.0%;
}
THIS WILL SHOW ONLY THE RIGHT SIDE OF THE IMAGE WHICH CONTAIN THE IMPROTANT INFO THAT YOU WANT USERS TO NOTICE
let me know if you need any further assistant have a nice day.