September 8, 2010
Seek the following code: // Force layout on homepage add_filter('genesis_pre_get_option_site_layout', 'streamline_home_layout'); function streamline_home_layout($opt) { if ( is_home() ) $opt = 'content-sidebar'; return $opt; } …and replace it with the layout you want to use: // Force layout on homepage add_filter('genesis_pre_get_option_site_layout', 'streamline_home_layout'); function streamline_home_layout($opt) { if ( is_home() ) $opt = 'full-width-content'; return $opt; }