Home › Forums › Support › Sidebar containers This topic has 5 replies, 2 voices, and was last updated 9 years, 2 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts June 9, 2015 at 8:21 am #113468 Aun How can I reduce the width and hight of right side bar containers? June 9, 2015 at 9:00 am #113483 TomLead Developer Lead Developer The sidebar widths can be altered using our Spacing add-on in the Customizer. If you’re not interested in the add-on, you can make use of the generate_left_sidebar_width and generate_right_sidebar_width filters. As for the height, it depends completely on the content within your widgets/sidebars. If there’s a lot of content, the sidebars will be taller etc.. Let me know if you need more info π July 6, 2015 at 9:00 am #118967 pilxy I would like to increase sidebar width to 30%. How can I do that using filters mentioned above? July 6, 2015 at 9:24 am #118976 TomLead Developer Lead Developer This should help: add_filter( 'generate_right_sidebar_width','generate_custom_right_sidebar_width' ); function generate_custom_right_sidebar_width() { return '30'; } add_filter( 'generate_left_sidebar_width','generate_custom_left_sidebar_width' ); function generate_custom_left_sidebar_width() { return '30'; } July 6, 2015 at 9:37 am #118982 pilxy Works like a charm. π Thanks Tom, I really appreciate your help! July 6, 2015 at 9:40 am #118984 TomLead Developer Lead Developer No problem π Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In