Sticky side menu – enlarge icons
-
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.
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,
Hi, the font is bigger now but not the pictures…
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.
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,