I want to remove social media from icon from drawer menu, but keep footer social media icon

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.css file
  • 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.

Summarized with AI on November 11. AI used: claude-sonnet-4-5-20250929.

https://lobonewyork.com/

  1. Edite Code

  2. Find base.css
    Try This Code For Put Your base.css File

.menu-drawer-container li.list-social__item {
    display: none;
}
1 Like