Site logo

Archived topic

Assign different mobile footer

5 replies · Started by Yo on April 12, 2021

Viewing posts 1–6 of 6

The footer I have is three widgets and does not look good on mobile. How can I create a second footer to display only on mobile?

Hi there,

Any chance you can link us to the site in question?

You can use the private information field.

Let me know :)

I added it.

I don't see it unfortunately.

Can you confirm?

Do you see it now?

Hi there,

I can see the footer now, if you just want to hide some widgets on mobile, we can offer some CSS like this:

@media (max-width: 768px) {
    .inside-footer-widgets > div:nth-child(1) {
        display: none;
    }
}

div:nth-child(1) means the 1st div which is the logo here. You just need to change the number to target a different widget.

Let me know :)

This archived topic is closed to new replies.