Site logo

Archived topic

Center left aligned text and elements in footer

5 replies · Started by takkularapsis on May 23, 2019

Viewing posts 1–6 of 6

Hi,

This could most basic thing, but still...:)

I have 3 footer element that i want all to be centered inside their own block. Now those elements are aligned to left side.

Hi there,

try this CSS:

.footer-widgets .widget {
    text-align: center;
}

Hi,

Thank you for your quick reply.

What if i want the text to be aligned left but in center of the widget?

Sorry my bad didn't read your title properly. Trickier but give this a shot:

@media (min-width: 1024px) {
    .inside-footer-widgets div:not(:last-child) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

Hi,

As always, again your support is like a secret agent, quick and affective :)

Thank you!

Haha - glad to be of help

This archived topic is closed to new replies.