How to hide the left sidebar totally?
How to hide the sidebar? We feel it's just cluttering the conversion of people actually sending us anything.
We want to emphasize the tabs and actions towards them.
Huge thanks!
How to hide the sidebar? We feel it's just cluttering the conversion of people actually sending us anything.
We want to emphasize the tabs and actions towards them.
Huge thanks!
For now on, if you remove all elements from the sidebar, the sidebar will disappear.
With a single space setup go to Settings > Space Page and disable the following settings:
If you have multiple spaces, you should also disable the following settings on Settings > Home Page:
Writing CSS is required to hide these elements anymore.
For now on, if you remove all elements from the sidebar, the sidebar will disappear.
With a single space setup go to Settings > Space Page and disable the following settings:
If you have multiple spaces, you should also disable the following settings on Settings > Home Page:
Writing CSS is required to hide these elements anymore.
Sure! Add these styles to CSS > Code section on the Settings > Customization page in the admin panel to hide the sidebar from all pages:
aside.layout__sidebar {
display: none;
}
.layout__content {
width: 100%;
}
.layout__content_in, .layout__data_right-sidebar .layout__content_in {
padding-left: 0;
padding-right: 0;
}