Tagged: footer column
Hi!
I have three columns in my footer and I would like to make the first and the third column a bit smaller. For this the second column is to be broadened.
May there exists a CSS Code for this?
Thanks a lot.
Patrick Galler
Hey derarbeitspsychologe.at,
Please include the url to the page in question so we can take a closer look.
Best regards,
Mike
Hi!
I have put the URL in the private content area.
Thanks for your help.
Patrick
Hi,
Try this code in the General Styling > Quick CSS field:
#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%;
}
Best regards,
Mike
It works!
Thanks a lot! :)