Hey @patsorules,
There’s no option for this currently so you need to override the theme styles with CSS. With the planned Layout Builder, you might not need CSS as you can build single and archive pages.
The first step is to ensure that you don’t add a widget to the Sidebar. But, to be extra sure nothing will show up in the frontend, you can hide the sidebar with the code below. Add it in Theme Options > CSS.
/* Hide X Sidebar on Single Post Only */
.single-post .x-sidebar {
display: none;
}
Next, is to center the Single Post Main Content with the code below. Still to be added in Theme Options > CSS.
/* Align Center the X Main Content Area */
.single-post .x-main {
margin: auto;
float: none;
}
Lastly, please note that the code provided here are to provide guidance only or make you aware of the features available to extend our themes. You will need to learn CSS to understand how those code works as we will not fix nor enhance custom codes. If you need more CSS tweaks and don’t want to learn CSS, you’ll need to hire web developer.
Hope that helps.