Omega – Remove sidebar on posts, make content width 100%
-
Hi! I am using “Custom” child theme of omega.
This code works in functions.php to remove widgets/sidebar on posts.
add_filter( 'sidebars_widgets', 'disable_all_widgets' ); function disable_all_widgets( $sidebars_widgets ) { if ( is_single() ) $sidebars_widgets = array( false ); return $sidebars_widgets; }
But once the sidebar is removed, the post content width remains the same and there is a ghost space to the right where the widgets were.
I would like to make this 100%.
Thank you!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Omega – Remove sidebar on posts, make content width 100%’ is closed to new replies.