Problem with text overlapping image on mobile only

Solved

Problem with text overlapping image on mobile only

Emma_Richards
Visitor
2 0 2

Hi, on desktop my image and text dont overlap, and the image size is perfect. However on mobile the text overlaps the image, making the text super hard to read. When i make the image smaller, the desktop image goes smaller but the image on mobile doesnt go smaller (unless i make the image very small on desktop, only then the image on mobile will go smaller)

Here is what is looks like on desktop: 

Screenshot 2024-08-11 at 1.17.59 PM.png

This is what it looks like on mobile:

94A622C1-298F-408B-B2CB-2C12053A40AA_4_5005_c.jpeg

 

My site URL is bowtime.co.uk

the password to enter is: lucigi

 

I have been trying to fix this for the last couple of weeks, so any help is greatly appriciated

Accepted Solution (1)

BSS-TekLabs
Shopify Partner
1810 514 599

This is an accepted solution.

- Here is the solution for you @Emma_Richards 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the slick.css file.
- Then add the following code at the end of the file and press 'Save' to save it.

@media screen and (max-width: 600px) {
    .section-slideshow-v3 .slider-img img {
        width: 51% !important;
    }
}

- Here is the result you will achieve:

BSSTekLabs_0-1723372272794.png

 

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution .
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
BSS Commerce - Full-service eCommerce Agency

For give Gift to customers and Upsell in Cart, check out Salepify: Free Gifts with purchase


Post purchase upsell, downsell offers to improve sales and AOV
Salemate Post Purchase Upsell

View solution in original post

Replies 6 (6)

BSS-TekLabs
Shopify Partner
1810 514 599

This is an accepted solution.

- Here is the solution for you @Emma_Richards 
- Please follow these steps:

z5686811214059_e66de1953f1db631f9134af5cdb796ad.jpg

- Then find the slick.css file.
- Then add the following code at the end of the file and press 'Save' to save it.

@media screen and (max-width: 600px) {
    .section-slideshow-v3 .slider-img img {
        width: 51% !important;
    }
}

- Here is the result you will achieve:

BSSTekLabs_0-1723372272794.png

 

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution .
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
BSS Commerce - Full-service eCommerce Agency

For give Gift to customers and Upsell in Cart, check out Salepify: Free Gifts with purchase


Post purchase upsell, downsell offers to improve sales and AOV
Salemate Post Purchase Upsell

Emma_Richards
Visitor
2 0 2

Thank you so much!

BSS-TekLabs
Shopify Partner
1810 514 599

Glad to help you. Have a good day @Emma_Richards .

If our suggestions are useful, please let us know by giving it a like or marking it as a solution .
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
BSS Commerce - Full-service eCommerce Agency

For give Gift to customers and Upsell in Cart, check out Salepify: Free Gifts with purchase


Post purchase upsell, downsell offers to improve sales and AOV
Salemate Post Purchase Upsell

niraj_patel
Shopify Partner
2378 514 511

Hello @Emma_Richards 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px) {
   .section-slideshow-v3 .slider-img img {
        width: 50% !important; /*adjust according to you*/
    }
    .section-slideshow-v3 .slideshow-content {
        width: 50% !important; /*adjust according to you*/
        left: 11px !important;;
        top: 68px !important;;
    }
}
</style>

niraj_patel_0-1723372558258.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
Spotiflyerteam
Visitor
2 0 0

Text overlapping images on mobile can definitely be a tricky issue. It might be related to responsive design settings or CSS issues specific to mobile devices. Here are a few things you might try:

. Check CSS Media Queries: Ensure your CSS includes media queries that adjust text and image placement for mobile devices.
. Adjust Z-Index: Sometimes, adjusting the z-index in your CSS can help with layering issues.
. Use Flexbox or Grid: Implementing flexbox or CSS grid can help manage layout more effectively across different screen sizes.

If you need a break from troubleshooting, enjoy some great music with SpotiflyerApp. Download your favorite tracks and take a moment to relax—good vibes can often help spark creative solutions!

Spotiflyerteam
Visitor
2 0 0

You must be also check.