Reply To: changing breakpoint for footer widgets (in tablet landscape view)

Home Forums Support changing breakpoint for footer widgets (in tablet landscape view) Reply To: changing breakpoint for footer widgets (in tablet landscape view)

Home Forums Support changing breakpoint for footer widgets (in tablet landscape view) Reply To: changing breakpoint for footer widgets (in tablet landscape view)

#191347
joecocker

Fantastic, Tom! Your solution and the speed in which you are answering support questions! Absolutely astonishing and satisfying! It was my best decision ever to buy your GP Premium Offer, really! :))

Back to the topic. I just added (by guessing 😉 the following and it works like a charm now, even on smartphones (they where included and got too narrow) – now everything looks perfect.

/* 3 Cols Footer widgets on tablets in landscape view */


@media
(max-width: 1024px) {
.inside-footer-widgets > div {
margin-bottom: 0;
}

.active-footer-widgets-3 .inside-footer-widgets > div {
width: 33.3333%;
}
}

/* but still 1 Col Footer widgets on phones in */


@media
(max-width: 480px) {
.inside-footer-widgets > div {
margin-bottom: 20px;
}

.active-footer-widgets-3 .inside-footer-widgets > div {
width: 100%;
}
}