[Resolved] Footer Width not uniform

Home Forums Support [Resolved] Footer Width not uniform

Home Forums Support Footer Width not uniform

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1347831
    Digital

    Dear team,
    I’m using the GP theme for my new website and it’s shaping up quite well. However I have a slight hiccup with the footer width.
    I’m using 4 widgets in the footer and want them to take up 25% space each. However footer 4 seems to be taking up most of the space and footer 1 is quite congested.
    Can you please help fix this?

    Cheers!!

    #1347833
    Digital
    #1347835
    Digital
    #1347992
    David
    Staff
    Customer Support

    Hi there,

    in Customizer > Additional CSS you have this:

    @media (min-width: 1025px) {
        .footer-widgets .footer-widget-1 {
            width: 15%;
            padding-right: 80px;
        }
    
        .footer-widgets .footer-widget-2 {
            width: 20%;
        }
    
        .footer-widgets .footer-widget-3 {
            width: 30%;
        }
    
        .footer-widgets .footer-widget-4 {
            width: 35%;
        }
    }
    
    @media (max-width: 768px) {
        .footer-widgets .footer-widget-1,
        .footer-widgets .footer-widget-2,
        .footer-widgets .footer-widget-3,
        .footer-widgets .footer-widget-4 {
            width: 100%;
            text-align: center;
        }
    }

    Delete that so the theme sets the widths or edit those % to match what you need

    #1349021
    Digital

    That’s fantastic.. It works perfectly now..

    Thanks David

    #1349222
    David
    Staff
    Customer Support

    You’re welcome

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