Archived topic
Padding/ margin issue on mobile on sidebar widgets
5 replies · Started by Hafsa on March 6, 2020
https://prnt.sc/rcu00n
ON MOBILE only - Please advise on how I can keep the same padding/ margins for the sidebar widgets as for the main containers (20px)?
Thanks
Also, on mobile, is there a way to move the sidebar widgets ABOVE the content containers?
https://prnt.sc/rcuslr - Need to move these two sidebar widgets to the very top.
Displayin sidebar widget on top has been figured.
https://generatepress.com/forums/topic/change-order-on-mobile/#post-157121
Hi there,
try this CSS for adding padding around the sidebar widgets on mobile:
@media (max-width: 768px) {
#right-sidebar {
padding: 0 30px;
}
}
Thanks
You're welcome