Where can I edit the footer colums width?
thank you again!!
Hey ftt123!
Please post the link to your website and elaborate on the changes you would like to make :)
Cheers!
Yigit
I would like to edit the width of the 1st and 2nd column in the footer in order to widening the first until the title line stays in just 1 line,
and reduce the second column, to get the space between the 4 columns remains more or less the same
thanks!!
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#footer .flex_column:nth-child(2) {
margin-left: 3%;
}
#footer .flex_column:nth-child(1) {
width: 23.5%;
}
Best regards,
Yigit
ok, it works for the 1st column but I need also to reduce the space between the 2nd and 3rd column, I need to have a similar space between the 4 columns, in order to be more “harmonious”
Hey!
Please change the code to following one and adjust the values
#footer .flex_column:nth-child(2),#footer .flex_column:nth-child(3),#footer .flex_column:nth-child(4) {
margin-left: 3%;
width: 18.5%
}
#footer .flex_column:nth-child(1) {
width: 23.5%;
}
Best regards,
Yigit
perfect thanks!