facebook

Tag Archives: Style Sheets

Alternative Style Sheet

Using the Thematic theme as a Parent, I wanted to have a separate style sheet for different pages. Here is the code to do so… function my_stylesheet($content) { global $wp_query; if (is_page()) { $pageID = $wp_query->post->ID; if ($pageID == ’222′) { $content = “\t”; $content .= “<link rel=\”stylesheet\” type=\”text/css\” href=\”"; $content .= get_bloginfo(‘stylesheet_directory’) . “/alternate.css”; [...]

Posted in Web Design | Also tagged , , | Comments closed