Hi,
I would like to reduce the height of my image banner on mobile view by around 20% without affecting the desktop view. Here is my store link: https://h3q4wdnwjy6pxgdy-71289930044.shopifypreview.com
Thanks.
Hi,
I would like to reduce the height of my image banner on mobile view by around 20% without affecting the desktop view. Here is my store link: https://h3q4wdnwjy6pxgdy-71289930044.shopifypreview.com
Thanks.
Hi @StarMintz
You can do that by adding this code to Custom CSS code of your banner section
@media (max-width: 767px) {
.banner__content {
height: 40rem;
}
}
Hi @StarMintz
Please update code to this
@media (max-width: 767px) {
.banner__content {
height: 40rem;
}
.banner__box { padding-bottom: 12px; }
}