Hi,
I have 3 footer columns and they are kind of divided with 33% of width for each.
I would like the first column to be 50% (more text) while the other two columns could be 25% (just for extra menus).
Is this easy to achieve?
Thank you
Hi sitesme!
Could you try the following in Quick CSS to see if it works?
#footer .av_one_third {
width:20%;
}
#footer .first {
width:40% !important;
}
You might have to adjust the % values a bit to achieve the look you’re after. If it doesn’t work, please send a link to your site and we’ll have a closer look.
Regards,
Rikard
Thank you Rikard.
I adjusted to
#footer .av_one_third {
width:15%;
}
#footer .first {
width:55% !important;
}
It is perfect now. Thank you.