[Resolved] Center left aligned text and elements in footer

Home Forums Support [Resolved] Center left aligned text and elements in footer

Home Forums Support Center left aligned text and elements in footer

  • This topic has 5 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #908693
    takkularapsis

    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.

    #908830
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

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

    Hi,

    Thank you for your quick reply.

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

    #908884
    David
    Staff
    Customer Support

    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;
        }
    }
    #908896
    takkularapsis

    Hi,

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

    Thank you!

    #908930
    David
    Staff
    Customer Support

    Haha – glad to be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.