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

    Hi,

    how I can change the column width in the footer. I have 3 columns (widgets) and I want that the column width is bigger.

    Thank you.

    Best,
    Harry

    #1162617

    Hey Harry!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file and adjust values as needed:

    CSS Snippet:

    
    #footer div .av_one_third:not(.first) {
        margin-left: 3%;
    }
    #footer div .av_one_third {
        width: 31.3%;
    }
    
    

    Best regards,
    Yigit

    #1162630

    Can I make the footer responsive?

    Many Thanks.

    Best,
    Harry

    #1162643

    Hi,

    Please change the code to following one

    @media only screen and (min-width: 767px) {
    #footer div .av_one_third:not(.first) {
        margin-left: 3%;
    }
    #footer div .av_one_third {
        width: 31.3%;
    }}

    Best regards,
    Yigit

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