I'm using the standard 2 column layout for most of my blog but I created a page that houses just forums. I created a new template for it that essentialy just pulled out the sidebar. But then I just have an empty space where it used to be. I'd like to switch the forums page to the 1col layout styles that I saw already existed but I'm a little confused about how stylesheets are being referenced.
I gathered that in this:
<?php
/**
* Template Name: Forums
*
* @package WPFramework
* @subpackage Layouts
* @beta
*/
get_header();
?>
get_header is pulling in the header.php and i see where it's calling out styles but I'm a PHP noob and don't quite understand what's going here:
<!-- Stylesheets -->
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="<?php echo CSS . '/print.css'; ?>" type="text/css" media="print" />
Would I need to create a separate header file as well and just statically point it the the 1col.css?