hi! i need to change layout of footer column:
i need to have 4 column,
1: 2 columns
2: 4 columns
3: 5 columns
4:1 columns
how can i do this?
Hey 4EPIU,
So to be clear are you looking to have columns nested within columns?
Best regards,
Jordan Shannon
If you have 4 columns in the footer, these columns will all have the same width.
I would rather have different widths depending on the column.
as an example that I attach.
My question is how can I give different width to individual columns?
Hi,
So simply put 4 columns of different sizes? This is possible on desktop though on mobile, you will likely have to keep them full-width 100%
Best regards,
Jordan Shannon
yes, I put 100% on my cell phone.
How can I make them of different sizes on the desktop?
how can i edit width of the colums in the footer?
Hi,
Add this to quick css and adjust the sizes to what you need:
@media only screen and (min-width: 767px) {
#footer .flex_column.av_one_fourth:nth-child(1) {
width: 40%;
}
#footer .flex_column.av_one_fourth:nth-child(2) {
width: 30%;
}
#footer .flex_column.av_one_fourth:nth-child(3) {
width: 20%;
}
#footer .flex_column.av_one_fourth:nth-child(4) {
width: 10%;
}}
Best regards,
Jordan Shannon