Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Re: slideShow section : dawn

slideShow section : dawn

Sohan2198
Pathfinder
124 9 18

hello, 
How can fix the slideshow banner height and width,
actually mobile view not show full image, 
check this,
https://www.zisthi.com/collections/earrings 
banner height, crop the most of content in mobile views

Sohan2198_0-1725654266836.png

 


Url:https://www.zisthi.com/
pass:Zisthi0206

 

Shopify_
Replies 2 (2)

Small_Task_Help
Shopify Partner
830 28 75

Hi,

 

Hope following will help

 

Adjust CSS for Mobile View

CSS example

.slideshow-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* Adjusts height automatically */
}

.slideshow-container img {
    width: 100%;
    height: auto; /* Ensures the image scales correctly */
    object-fit: cover; /* Prevents image distortion while covering the container */
}

@media (max-width: 767px) {
    .slideshow-container {
        height: 50vh; /* Adjust this value to fit your needs */
    }

    .slideshow-container img {
        height: 100%;
        object-fit: cover; /* Ensures the image covers the container without distortion */
    }
}

Add or Modify CSS Rules (theme.css or styles.css)

Adjust theme setting

To Get Shopify Experts Help, E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert Agency
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
Sohan2198
Pathfinder
124 9 18

not working 

Shopify_