Home Forums WoodMart support forum AJAX Product Tabs – Icons on mobile too small

AJAX Product Tabs – Icons on mobile too small

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #417606

    niwo
    Participant

    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.
    #417640

    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.

Viewing 2 posts - 1 through 2 (of 2 total)