Topic summary
A user wants to hide social media icons from the drawer menu while keeping them visible in the footer.
The original poster shared a screenshot showing their current setup.
Proposed Solution:
- Edit the theme’s
base.cssfile - Add CSS code to hide the drawer menu social icons:
.menu-drawer-container .list-social__item li { display: none; }
This CSS targets specifically the social media list items within the drawer menu container, leaving footer icons unaffected. The solution requires basic theme code editing access.
-
Edite Code
-
Find base.css
Try This Code For Put Your base.css File
.menu-drawer-container li.list-social__item {
display: none;
}
1 Like
