It sounds like you may just need to change the CSS code for the category template without the sidebar? Can you post a link to the page you’re trying to change?
get some of my categories to behave like full-width pages
in functions.php of the child theme, add something like:
add_filter('body_class','twentytwelvechild_body_class_adapt',20);
function twentytwelvechild_body_class_adapt( $classes ) {
if ( is_category( array('some-cat-1','some-cat-2','some-other-cat') ) )
$classes[] = 'full-width';
return $classes;
}
http://codex.ww.wp.xz.cn/Function_Reference/body_class#Add_Classes_By_Filters
http://codex.ww.wp.xz.cn/Function_Reference/is_category
Thread Starter
kglo
(@kglo)
Yes! That worked perfectly; thank you.