Do you have a link to the live site? Most likely it’ll need to be handled by CSS with some media queries
Thread Starter
Anonymous User 17836910
(@anonymized-17836910)
@jarretc
You can access to the site here: [redacted]
I think I need this media call to be applied only to this size of the screen:
@media only screen and (max-width: 48em) and (min-width: 22.5em) {
.???? {
????
}
}
Hi, the following should work from testing in Chrome
@media only screen and (max-width: 48em) and (min-width: 22.5em) {
.footer-widgets-wrapper .footer-widgets {
display: inline-flex;
max-width: 49.5%;
}
}
Thread Starter
Anonymous User 17836910
(@anonymized-17836910)
@jarretc
I tried the code and works fine, but I gave you the max and min widths wrong. It is applied to mobiles phones too, for example.
I thought the tablet size was 48em (768px) and the mobile was 22.5em (360px).
Do you know where I can check these numbers in Twenty-twenty?
Hi, you should just have to modify the 48em and 22.5em values to match what you want. What browser widths are you seeing it on that it should be in the 2×2 layout?