I want to play with the layout of the default theme.
I'm making a new header, I see I have to change some values in the header.php file. When I open that file between the style tags the only thing i can find is the following code:
<style type="text/css" media="screen">
<?php
// Checks to see whether it needs a sidebar or not
if ( !$withcomments && !is_single() ) {
?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
<?php } ?>
</style>
No #header like they tell in the following post on this forum:
http://wordpress.org/support/topic/58467?replies=20
How come ?