hey,
does anyone know how I can place all sizes in one line on the phone?
thanks in advance
shop: brokenmind.com
pw: test1
hey,
does anyone know how I can place all sizes in one line on the phone?
thanks in advance
shop: brokenmind.com
pw: test1
Hi @drew23
You can try doing it this way:
@media screen and (max-width: 435px) {
.product-form__input input[type=radio]+label{
font-size: 1.4rem;
margin: auto;
padding: 1rem;
}
}
We hope that this can help you.
Hi @drew23
You can try this way:
@media screen and (max-width: 545px) {
.product-form__input input[type=radio]+label{
font-size: 1.4rem !important;
margin: auto !important;
padding: 1rem !important;
min-width: 80px !important;
}
}
We hope that it will work for you.
it worked thanks! do you know by any chance how to center the sizes?
Hi @drew23
You can try adding this code at the end of the base.css file:
@media screen and (max-width: 435px) {
.product-form__input
margin: 0 auto !important;
display: flex !important;
align-items: center;
}
}
hey, i added your code but it didnt change anything
Hi @drew23
Weβre so sorry for the confusion, it should be 750px:
@media screen and (max-width: 750px) {
.product-form__input
margin: 0 auto !important;
display: flex !important;
align-items: center;
}
}