Tagged: enfold, Footer widgets, size, width
Is it possible to change the footers widths to be more uneven. Basically I want to have 2 footer widgets the first should be roughly 65% and the second roughly 35%.
Hi Chris,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer .flex_column.first {
width: 62%;
}
#footer .flex_column:nth-child(2) {
width: 32%;
}
There is 6% margin left on the second column for spacing hence -3% from each column.
Best regards,
Yigit
Thanks so much Yigit. Works perfectly.