How do I add sidebars to home.php in my child theme?
I created a child theme. All the pages, single, search,etc all have the left and right sidebars per the excellent Thematic layout: 3c-fixed!
</div><!-- #content -->
<?php thematic_belowcontent();
dynamic_sidebar('primary-aside');
dynamic_sidebar('secondary-aside');
?>
But that has all the wrong css.
What am I doing wrong?