Hi tubbadu,
Are you trying to do so on the Homepage or in the internal single view posts?
Let me know.
Kind regards,
Diego
@corewpress thank you for answering me! I want to remove the sidebar from all my website
bye!
Ale
Hi there,
Unfortunately we don’t have any settings to remove the sidebar on all pages. You can use some workaround for that and add this css to Appearance ā Customize ā Additional CSS:
.sidebar.col-md-4 {
display: none;
}
.main-column.col-md-8 {
width: 100%;
}
Kind regards
Yessssss that works!!! Thank you very much @jarektheme!
Hello @jarektheme, is it possible to remove the sidebar from posts but not from main page?
Thanks!!!
Seidy
Hello @seidys1,
Yes, it is possible to hide the sidebar on single post page. Please use this css instead of above:
.single .sidebar.col-md-4 {
display: none;
}
Kind regards