Site logo

Archived topic

sidebar ads alignment on mobile

3 replies · Started by Femke on November 16, 2019

Viewing posts 1–4 of 4

Hi,

On my site I have sidebars with ads and images. On desktop it looks good. But on mobile the images are aligned left and it should be aligned in the middle just like on desktop. Is there a way to get this aligned?

Hi there,

you can centre align the first to widgets with this CSS:

@media (max-width: 768px) {
    .inside-right-sidebar aside:first-child, .inside-right-sidebar aside:nth-child(2) {
        text-align: center;
    }
}

That worked, thanks!

You're welcome

This archived topic is closed to new replies.