Hi,
is there any way to turn the thematic theme into an one column theme?
thanks
Hi,
is there any way to turn the thematic theme into an one column theme?
thanks
sure. kill the sidebar and then modify the CSS. i made it a layout option in my version of Devin's Options theme.
To easily remove the sidebar, put the following in your child theme's functions.php:
function remove_sidebar() {
return FALSE;
}
add_filter('thematic_sidebar', 'remove_sidebar');yup- that will do it. then you just need to change some css. #content, #container, #respond, and .hentry i think, among possible others.
Hi,
if you use WP >= 3.0, you can use this code:
add_filter('thematic_sidebar', '__return_false');
Chris
This topic has been closed to new replies.