HI guys, I want to increase the height of the image slideshow (phone version only). Please see
Hi @fariznovoselic ,
You can follow these steps:
Step 1:
Step 2: Find the theme.liquid file and add the following code before the tag:
<style>
@media(max-width: 425px) {
.banner .slideshow__slide {
height: 300px !important
}
}
</style>
*Note: You can change ‘300’ to any other number you desire to decrease or increase the image size.
Hopefully, it will help you.

