Is there an easy way for me to modify the footer colum sized besides completly hacking footer.php? I am looking for this layout:
<div class="av_one_fourth first"></div>
<div class="av_one_half"></div>
<div class="av_one_fourth"></div>
Hi Imburr!
You can choose 3 columns on Enfold > Footer then add this on your custom.css or Quick CSS:
#footer .flex_column.av_one_third:nth-child(1) {
width: 20%;
}
#footer .flex_column.av_one_third:nth-child(2) {
width: 45%;
}
#footer .flex_column.av_one_third:nth-child(3) {
width: 20%;
}
Regards,
Ismael
Ahh, I feel dumb for asking that question now, I forgot about overriding your CSS, and was focused on changing the PHP. Thank you so much!