Home Forums WoodMart support forum Sticky side menu – enlarge icons

Sticky side menu – enlarge icons

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #651978

    Marco
    Participant

    Hello everyone,

    can someone tell me how I can make the small thumbnails in the side menu and the font bigger?

    Thank you very much for your help!

    Marco 🙂

    Attachments:
    You must be logged in to view attached files.
    #652062

    Hello,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    .wd-nav-sticky > li > a .wd-nav-img {
        --nav-img-width: 40px;  
        --nav-img-height: 40px; 
    }
    .wd-nav-sticky > li > a .nav-link-text {
        font-size: 20px; 
    }

    Best Regards,

    #652070

    Marco
    Participant

    Hi, the font is bigger now but not the pictures…

    #652075

    Marco
    Participant

    Oh, sorry, apparently it does work… probably an uncleared cache.
    How can I make the left bar a little wider to match? (see Screenshot)

    Attachments:
    You must be logged in to view attached files.
    #652117

    Hello,

    Please remove the previous code and add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS. Change the value as per your requirements to adjust this.

    .wd-nav-sticky > li > a .wd-nav-img {
        --nav-img-width: 40px;  
        --nav-img-height: 40px;
        right: 10px !important;
        position: relative;
    }
    .wd-nav-sticky > li > a .nav-link-text {
        font-size: 20px; 
            margin-left: 10px !important
    }

    Best Regards,

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