• Is it possible?
    For example, I would like to use 3/1 + 1/4 for the footer
    Basically, two columns, but not equal size.
    Or to choose 2 columns and tweak with CSS somehow (70%, 30%)?
    What If I want whole footer to be one box, without columns?

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi porga,
    you should probably play with the CSS display property to show/hide widget columns in the footer, and then enlarge the remaining column(s) with the width property. If you give me the link to your website it would be a pleasure to help you. 🙂

    You can do it with css, add this to your custom css box in the theme options > adanced settings. That will make a 70% 30%. For one column just make the first column 100% and hide the second column.

    @media (min-width: 992px) {
    .footercol1 {
    width: 70%;
    }
    .footercol2 {
    width: 30%;
    }
    }

    Kadence Themes

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Merge widget areas in footer?’ is closed to new replies.