• Hey!

    I am using the Sydney theme and need to reduce the footer height. I have a Layout builder plugin (with some text and social icons plugins) in the footer area. Ideally, I would like for the height to be minimum, if anyone could post how to achieve different footer “height”, that’d be great (since I have the same issue with the menu header for mobile and I’ll try to solve it myself).
    Can anyone provide me with some custom CSS that will allow me to reduce the height of the footer?

    Here’s the link to my website
    https://www.aumairconditioning.com/

    Cheers!

    • This topic was modified 7 years, 9 months ago by bharatm23.
    • This topic was modified 7 years, 9 months ago by bharatm23.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @bharatm23

    You can achieve this by applying following CSS code

    .footer-widgets {
        padding: 50px 0 !important;
        background-color: #252525;
    }
    @media(max-width:320px) {
       
    div#sidebar-footer {
        height: 320PX;
    }
    
    }
    
    @media(max-width:480px) {
    
    div#sidebar-footer {
        height: 320PX;
    }
    
    }

    Thanks.

    • This reply was modified 7 years, 9 months ago by wbcomdesigns.
    Thread Starter bharatm23

    (@bharatm23)

    Thanks wbcomdesigns
    That certainly reduces the space, but its not quite enough. Any way to really cut down the redundant spacing?
    By the way, I’ve checked the padding for the text widget, it’s at 10, so that shouldn’t be the issue.
    Here’s the link again
    https://www.aumairconditioning.com/
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reducing Footer height’ is closed to new replies.