Reply 214730 to: Sidebar width

Avatar: Olga Barlow
Olga Barlow
Support staff
May 31, 2019 at 16:17

Hello,

Unfortunately, there is no global option. You can change it by additional customization.
1) Find function etheme_page_config (xstore/framework/sidebars.php) and add the following code as mentioned on the screenshot
$layout = apply_filters('etheme_page_config', $layout);

2) Add the following code to child theme functions.php

add_filter('etheme_page_config', 'custom_etheme_page_config', 20, 1);
function custom_etheme_page_config($layout) {
	$layout['sidebar-size'] = 8;
	$layout['content-size'] = 4;
	return $layout;
}

Screenshot https://prnt.sc/nvyfu6

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.