Remove Arrows

Home Forums Business Club Pro Remove Arrows

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7447
    Anonymous
    Inactive

    How do I get rid of the little arrows that appear on my site? For example the Menu Options and Social Icons in my footer.

    URL: tizzime.com

    Thank You

    #7466
    Axle Support
    Moderator

    To hide arrow in menu, you can use following CSS.

    .main-navigation ul li.menu-item-has-children a, .main-navigation ul li.page_item_has_children a {
        padding-right: 15px;
    }
    .main-navigation ul li.menu-item-has-children > a::after, .main-navigation ul li.page_item_has_children > a::after {
        display:none;
    }
    

    To remove icon in footer widget, you can use following CSS.

    #footer-widgets ul li {
        padding-left: 0;
    }
    #footer-widgets ul li::before {
        display:none
    }
    
    #7478
    Anonymous
    Inactive

    Thank you, this CSS worked great. I am now looking to do the same for my sidebar widgets. Thanks.

    #7504
    Axle Support
    Moderator

    Thanks.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove Arrows’ is closed to new replies.