Site logo

Archived topic

Footer Widgets on devices aligned in two columns

3 replies · Started by Atmostfear on April 16, 2020

Viewing posts 1–4 of 4

Hello,

Recently, I released a new subsite and it has 5 widgets on the footer, one of which is disabled for mobile devices, leaving it to display 4 instead.

My issue is that the widgets display as:

Information
Initiatives
Services
Compliance

I would prefer to display those like this:

Information - Initiatives
Services - Compliance

How can I accomplish this?

Hi there,

Give this CSS a shot:

@media (max-width: 768px) {
    .footer-widgets .inside-footer-widgets .mobile-grid-100 {
        float: left;
        width: 50%;
        clear: none;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Let me know if this helps :)

Hello Leo,

This worked out perfectly, thank you very much for the support.

No problem :)

This archived topic is closed to new replies.