[Resolved] widgets (center)

Home Forums Support [Resolved] widgets (center)

Home Forums Support widgets (center)

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #877281
    generatepressuser

    Hello

    I would like to “center” the widgets I have on the website I made for a friend. There are only 3 widgets and I tried a lot of different css code but could not center it. I can do it with margin-left but then in mobile version it looks horrible.

    Do you have any idea how to center the widget area above the footer?

    Thank you.

    #877296
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    @media (min-width: 1024px) {
        .site-footer .footer-widgets-container .inner-padding {
            padding: 0;
        }
    
        .site-footer .footer-widgets-container .inside-footer-widgets {
            margin-left: 0;
            display: flex;
            justify-content: center;
        }
    
        .inside-footer-widgets .grid-33 {
            width: auto;
        }
    
        .footer-widget-2 {
            margin-left: auto;
            margin-right: auto;
        }
    }
    #877301
    generatepressuser

    Thank you it looks perfect!

    Good to learn this way 🙂

    #877310
    David
    Staff
    Customer Support

    Glad to be of help.

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