On iPhone at least, the account icon doesn’t show up on portrait mode, only on landscape. I need that button to always be present regardless of platform, orientation, screen size, etc.
How to enable that?
Thanks
On iPhone at least, the account icon doesn’t show up on portrait mode, only on landscape. I need that button to always be present regardless of platform, orientation, screen size, etc.
How to enable that?
Thanks
Hello @empiricalarby ,
If you want to display the account button on all screens, please follow these steps:
@media(max-width:749){
.header__icon--account.small-hide{
display:block !important;
}
}
Thanks, but I didn’t notice any changes after applying the code
Try this Code
@media(max-width:749px){
.header__icon--account.small-hide{
display:block !important;
}
}
Try this Code
@media(max-width:749px){
.header__icon--account.small-hide{
display:flex !important;
}
}
@media(max-width:600px){
.header__icon .icon{
height: 1.7rem;
width: 1.7rem;
}
.header__icon--cart .icon{
height: 3.4rem;
width: 3.4rem;
}
}
@media(max-width:600px){
.header__icon, .header__icon--cart .icon {
height: 3.4rem;
width: 3.4rem;
}
}