Comments JC started the conversationFebruary 19, 2015 at 11:49amhow do i achieve a 4 column widget with custom widths20 / 30 / 20 / 30with a 3% padding on the first and second column and no padding on the last two 8,848Tahir repliedFebruary 19, 2015 at 1:23pmHey!Add this into the Custom CSS box located in your Salient Options panel :#footer-widgets .span_3:nth-child(1) { width: 20%; } #footer-widgets .span_3:nth-child(2) { width: 30%; } #footer-widgets .span_3:nth-child(3) { width: 20%; } #footer-widgets .span_3:nth-child(4) { width: 30%; } #footer-widgets .col:nth-child(1) { padding-right: 3% !important; } #footer-widgets .col { padding-right: 0% !important; margin-right: 0%!important; }Thanks ThemeNectar Support Team JC repliedFebruary 19, 2015 at 11:35pmThan you, it works well for desktop but now the responsive isn't stacking upcan you please helphttp://parklandplayers.ca 8,848Tahir repliedFebruary 20, 2015 at 3:39pmHey Again!You can wrap them in a media query like this: @media only screen and (min-width: 1000px) { #footer-widgets .span_3:nth-child(1) { width: 20%; } #footer-widgets .span_3:nth-child(2) { width: 30%; } #footer-widgets .span_3:nth-child(3) { width: 20%; } #footer-widgets .span_3:nth-child(4) { width: 30%; } #footer-widgets .col:nth-child(1) { padding-right: 3% !important; } #footer-widgets .col { padding-right: 0% !important; margin-right: 0%!important; } }Best,-T ThemeNectar Support Team JC repliedFebruary 20, 2015 at 10:43pmGREAT thank you, smart solution! Sign in to reply ...
how do i achieve a 4 column widget with custom widths
20 / 30 / 20 / 30
with a 3% padding on the first and second column and no padding on the last two
Hey!
Thanks
ThemeNectar Support Team
Than you, it works well for desktop but now the responsive isn't stacking up
can you please help
http://parklandplayers.ca
Hey Again!
You can wrap them in a media query like this:
Best,
-T
ThemeNectar Support Team
GREAT thank you, smart solution!