Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi
I have few widgets in the footer, how should I specified each of the width of the columns.
I tried by css by each of the Id, it looks good in browser but not in mobile.
Thanks.
Hi Tanhs.niit
You can fix/change this with some custom CSS. If you navigate to AppearanceCustom CSS, you’ll get our custom CSS editor. Just add the following code.
#footer-widgets .widget:nth-of-type(1) { width: 10%; } #footer-widgets .widget:nth-of-type(2) { width: 10%; } #footer-widgets .widget:nth-of-type(3) { width: 10%; } #footer-widgets .widget:nth-of-type(4) { width: 10%; } @media (max-width: 780px) { #footer-widgets .widget { width: 100% !important; } }You might also need to install the SiteOrigin CSS Editor.
Adjust the above as required.