Hi Ronald,
You can add this in your child theme’s functions.php file.
function blog_index_sidebar($contents) {
/* Blog page layout */
if ( is_home() ) {
$contents = 'content-sidebar';
}
/* Blog articles layout */
if ( is_singular('post') ) {
$contents = 'content-sidebar';
}
return $contents;
}
add_filter('x_option_x_layout_content', 'blog_index_sidebar');
You may change $contents to full-width, content-sidebar or sidebar-content
Hope that helps.