I have a new template page set up "2col-page.php" using the page.php as a model.My site is based on 3-r-fixed layout css file. I would like pages using this new template to use the 2-r-fixed.css file for its structure. Can I just somehow call it from within the template page?
Ideally I would like it to just use the widgets set in the primary aside in the 3-r-fixed pages.
So far I got kind of a single page layout by just commenting out the sidebar call
<?php get_sidebar('page-bottom') ?>
</div><!-- #content -->
</div><!-- #container -->
<?php /*thematic_sidebar()*/ ?>
<?php get_footer() ?>
But that does not change the container size or anything.