Archived topic
Unnecessary White Space on the Right Side on Tablet Devices
5 replies · Started by baberksidd on May 16, 2021
Hey Team,
I'm unable to remove this unwanted white space issue. Here's the screenshot to it: https://share.getcloudapp.com/p9ubq9pr
Here's link to the page: https://bit.ly/3hrndut
Thanks
Hi there,
you have the Right Sidebar enabled - but it has no widgets added to it.
You can remove sidebars in Customizer > Layout > Sidebars.
Hi David,
Yes I know. But I want this to show on the desktop version and not on tablet devices. Sidebar widgets (if I put any) should be down after the content ends.
Thanks
Try this CSS:
@media(max-width: 1024px) {
.site-content {
flex-direction: column;
}
.site-content .content-area,
#right-sidebar {
width: 100% !important;
}
}
Worked like charm!
Thanks David!
Glad to be of help