css3 - Want to remove Boostrap mobile Nav Button Border -
this first post. website (zidanmarketing.com) using bootstrap, when mobile button active there blue border unable remove. how resolve this?
.navbar-toggle:hover, .navbar-toggle:active, .navbar-toggle:focus { background:none !important; border-color:none !important; }
.navbar-toggle { border: none; outline: none; }
for targeting 767px , below, mobile button triggers try this.
@media (max-width: 767px) { .navbar-toggle { border: none; outline: none; } }
Comments
Post a Comment