Home › Forums › Basel support forum › Sidebars › Reply To: Sidebars
June 24, 2016 at 3:49 pm
#1539

Artem Temos
Keymaster
Hello there,
Thank you for creating with us!
There is no such option in our theme, but you can try to customize our theme functions to achieve this. Try to add this code to your functions.php file in the child theme
function basel_get_sidebar_class() {
if( is_product_tag() ) {
return 'col-sm-0';
}
return BASEL_Registry()->layout->get_sidebar_class();
}
function basel_get_content_class() {
if( is_product_tag() ) {
return 'col-sm-12';
}
return BASEL_Registry()->layout->get_content_class();
}
Regards