How do I get the following footer column widths: 25% 25% 50%.. ?
Thank you!
How do I get the following footer column widths: 25% 25% 50%.. ?
Thank you!
Hi,
What I would do is go to Choices > Theme Options > Footer and select 3 columns then go to custom.css (located in the theme's /css/ folder) and add the following.
#footer div .one_third {
margin-left:0%;
width: 23%;
}
#footer div .one_third:last-child {
float:right;
margin-left:0%;
width: 48%;
}
What that should do is tell the browser to render the columns at 23%, 23% and 48%. I used those numbers so there would be spacing between the columns.
Regards,
Mya
Thank you Mya! I forgot about using last-child. :)
Hi,
Glad Mya could help.
Regards,
Ismael
This topic has been closed to new replies.