Archived topic
Border and padding on footer widgets for tablet and mobile.
3 replies · Started by Luis on September 21, 2018
I used the code below and it worked for desktops but not for tablets and mobile. Thanks
.site-footer .footer-widgets-container .inside-footer-widgets {
margin-left: 0;
}
.site-footer .footer-widgets-container .inner-padding {
padding: 20px;
margin: 20px;
border: 1px solid #000;
}
Hi there,
the border is working but the padding is being removed by the mobile CSS. Give you're padding importance: padding: 20px !important;
That did it! Thanks.
Glad i could help.