• Resolved webpp

    (@webpp)


    First, let me start with a big THANK YOU for this awesome plugin. Wish you had a paid version to give you little support from my side.

    I am trying to remove an icon/menu from a small screen size using CSS, this because smaller screens get crowded with icons. I have used CSS many times before on the site and with other plugins to accomplish similar things like this.

    @ media screen and (max-width: 768px){
    icon here {
    display: none !important;
    }
    }

    But when trying to remove the icon with css, an empty space remains, And the empty space still works as if the icon was still there when clicking on it.

    Can you please help me, thanks again.

    • This topic was modified 3 years ago by webpp.
    • This topic was modified 3 years ago by webpp.
Viewing 1 replies (of 1 total)
  • Plugin Contributor Liquid Themes

    (@liquidthemes)

    Hi @webpp

    You can use .wp-bottom-menu-icon-wrapper class for hide icons.

    Full code:

    @media screen and (max-width: 768px){
    .wp-bottom-menu-icon-wrapper{
    display: none;
    }
    }


Viewing 1 replies (of 1 total)

The topic ‘Remove an item with CSS’ is closed to new replies.