How can I adjust the slideshow size on mobile version?

URL is www.ahly.com.au

can you please help me change slideshow size in mobile version?

current version :

ideal version:

thanks

Hello @aus-10188 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-image-banner.css → find line 61 change min-height

change “39rem” to min-height you want

for example: min-height: 500px;

-Note: If the height is big, image will be cropped and blurred.

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

Hi @aus-10188 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css->paste below code at the bottom of the file:
@media (max-width: 767px) {
    .slider.slider--everywhere .slider__slide {
        height: calc(100vh - 178px);
   }
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.