Reply To: Bug at 1024 pixel

Home Forums Support Bug at 1024 pixel Reply To: Bug at 1024 pixel

Home Forums Support Bug at 1024 pixel Reply To: Bug at 1024 pixel

#212910
Tom
Lead Developer
Lead Developer

Oh, well that’s not really a bug as much as a CSS tweak. That’s just the margin bottom of the widgets combining with the bottom padding of the content container.

Maybe something like this should be added to the core theme?:

@media (max-width: 1024px) {
    .active-footer-widgets-1 .footer-widget-1, 
    .active-footer-widgets-3 .footer-widget-3, 
    .active-footer-widgets-5 .footer-widget-5 {
        margin-bottom: 0;
    }
}
@media (max-width: 768px) {
    .inside-footer-widgets > div:last-child {
        margin-bottom: 0;
    }
}