How can I make my Craft theme banner clickable on mobile?

Hello, I use a code CSS that made my banner Clickable on Desktop but do not work on Mobile, how Can I make banner clickable on mobile?Craft Theme

Hi @Ana281

Could you share your store link?

Hi Mate, sure

Dalipe.com.br

@Dan-From-Ryviu

Hi @Ana281

Please add this additional css code

@media screen and (max-width: 767px) {
.banner__content { position: absolute; }
}

@Dan-From-Ryviu

thanks mate, now its everything working properly, I will share the FULL CSS code.

.banner__content .banner__box,
.banner__content {
max-width: 100%;
}
.banner__content .banner__box .banner__buttons a,
.banner__content .banner__box {
height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.banner__content .banner__box {
opacity: 0;
}
@media screen and (max-width: 767px) {
.banner__content {
position: absolute;
}
}

CRAFT theme