0
The mobile menu symbol I use does not display in some browsers belonging to some tablets that my family owns.
<label class="menumobile" for="bt_menu">☰</label>
CSS
label.menumobile{
float: left;
width: 100%;
color:#fff;
min-height: auto;
background-color: #FF8922;
box-sizing: border-box;
}
label[for="bt_menu"]{
padding: 5px;
background-color:#FF8922;
color:#fff;
text-align: center;
font-size: 30px;
cursor: pointer;
width: 50px;
height: 50px;
box-sizing: border-box;
}
Thank you very much! It worked perfectly.
– Gladison