hi, is it possible to remove MORE from main meu more item (css: item-more) just like homepage (css: item-home)??? I want to show only fa table icon.
I tried item-home css trick but I did not success.
mbunal Hello
You can try this custom css:
.navbar-default .navbar-nav > .item-more .fa { text-indent: 0; position: absolute; left: 0; top: 0; width: 48px; height: 48px; line-height: 48px; font-size: 18px; margin: 0; } .navbar-default .navbar-nav > .item-more { text-indent: -9999em; position: relative; padding-left: 0; padding-right: 0; width: 48px; text-align: center; }
thank you. solved.