Hi all,
I wanted to make my footer menu on mobile having all 3 menu in one row and 3 columns.
I search different solutions and I found this:
add following css your assets/base.css bottom of the file
@media screen and (min-width: 750px){
.grid--4-col-tablet .grid__item {width: calc(25% - 1rem * 3/ 4) !important;}
}
I also try this:
@media screen and (max-width: 767px){
.footer__content-top.page-width .footer__blocks-wrapper {
display: flex;
flex-wrap: wrap;
}
.footer__content-top.page-width .footer__blocks-wrapper .footer-block.grid__item {
width: 50%;
margin: 0;
}
.footer__content-top.page-width .footer__blocks-wrapper .footer-block.grid__item:nth-child(6) {
width: 100%;
}
}
and i am playing with this to find something suitable adjusting width values:
@media (max-width: 749px) {
.footer-block.footer-block--menu {
width: 50% !important;
display: inline-block !important;
vertical-align: top !important;
}
}
I’ve done it, but nothing has changed or stay aligned.
My store URL is https://theheelsluxxx.com/
thanks for your help