Archived topic
Keeping 3 x footer widgets for tablet screen size
5 replies · Started by Anton on November 23, 2015
How do I get the footer widgets to keep showing 3 x 33% when the browser viewport is reduced to tablet size? (Instead of collapsing to show 2 x 50% widgets and 1 x 100% underneath them.)
Thanks
Hi there,
This should help: https://generatepress.com/forums/topic/footer-widgets-cut-off-for-multiple-rows/#post-135953
Let me know :)
Can't it be done just using some CSS?
Give this a shot:
@media (max-width: 1024px) and (min-width: 769px) {
.inside-footer-widgets .tablet-grid-50 {
width: 33.333%;
}
}
Adding CSS: https://generatepress.com/knowledgebase/adding-css/
Thanks Tom. Don't we also want "...and (min-width:768px)" so it still collapses to one column on mobiles?
Anton
Ah, you're right. I just adjusted the CSS above :)
