Hi,
I was just wondering if it's possible to remove both sidebars properly?
I've put everything into the Mega Menu that would otherwise be displayed in a side menu, yet the spacing for this sidebar stays there.
If I specify for two sidebars in site options, then a similar effect appears on the right side. I would ideally want the entire central section (in my eyes defined by the border going down the page) to be filled with whatever is in the page body, but this doesn't seem to be possible.
Using Chrome's Inspect Element, it's easy to see why this is caused. The content-area class is shifting all of what is essentially the main body content across to the right and causing the gap I'm trying to get rid of.
".content-area {
float: right;
width: 80%;
margin: 0;
padding: 0;
}"
I guess I'm asking where to find this class to change the width property. But also if there is a technique that doesn't require going in and changing code. I would have thought that if the sidebars were removed, the main content would have just simply taken the space freed up by these, rather than leaving large clumps of whitespace.
Edit: The left-sidebar is commented out of the code. So it's just the .content-area class that is causing the gap to appear.
I was just wondering if it's possible to remove both sidebars properly?
I've put everything into the Mega Menu that would otherwise be displayed in a side menu, yet the spacing for this sidebar stays there.
If I specify for two sidebars in site options, then a similar effect appears on the right side. I would ideally want the entire central section (in my eyes defined by the border going down the page) to be filled with whatever is in the page body, but this doesn't seem to be possible.
Using Chrome's Inspect Element, it's easy to see why this is caused. The content-area class is shifting all of what is essentially the main body content across to the right and causing the gap I'm trying to get rid of.
".content-area {
float: right;
width: 80%;
margin: 0;
padding: 0;
}"
I guess I'm asking where to find this class to change the width property. But also if there is a technique that doesn't require going in and changing code. I would have thought that if the sidebars were removed, the main content would have just simply taken the space freed up by these, rather than leaving large clumps of whitespace.
Edit: The left-sidebar is commented out of the code. So it's just the .content-area class that is causing the gap to appear.
Comment