AJAX Product Tabs – Icons on mobile too small
-
Hi,
I couldn’t find any settings to adjust the icon size on mobile devices.
See screenshot.
How to achieve the size change from 25 px to 50 px on a mobile device?
Regards
Attachments:
You must be
logged in to view attached files.
Hello,
Please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:
@media (max-width: 768px) {
.wd-tabs .wd-tabs-header .img-wrapper img {
max-height: fit-content !important;
width: 50px !important;
height: 50px !important;
}
}
In this Custom CSS, you can change the value of width and height according to your choice.
Best Regards.