Tagged: footer
Hi, I have 5 columns in my footer and my goal is to get the outer two columns to be a bit bigger than the 3 inside. Was wondering if you have a suggestion? I’ve been trying, but the html tags are the same.
Hey,
Please add this on your custom.css or Quick CSS:
.flex_column.av_one_fifth:nth-child(1) {
width: 12.2%;
}
.flex_column.av_one_fifth:nth-child(2) {
width: 12.2%;
}
.flex_column.av_one_fifth:nth-child(3) {
width: 12.2%;
}
.flex_column.av_one_fifth:nth-child(4) {
width: 19%;
}
.flex_column.av_one_fifth:nth-child(5) {
width: 19%;
}
The 4th and 5th column will be bigger than the rest.
Regards,
Ismael