header.php css div's position changing so it looks nicer in the output.
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
7ab9c22c9c
commit
4c793dc6f2
33
header.php
33
header.php
|
@ -23,10 +23,12 @@
|
||||||
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name') ?> Atom Feed" href="<?php bloginfo('atom_url') ?>" />
|
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name') ?> Atom Feed" href="<?php bloginfo('atom_url') ?>" />
|
||||||
<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
|
<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
|
||||||
<meta name="ComicPress" content="<?php echo $comicpress_options['comicpress_version']; ?>" />
|
<meta name="ComicPress" content="<?php echo $comicpress_options['comicpress_version']; ?>" />
|
||||||
|
|
||||||
<!--[if lt IE 7]>
|
<!--[if lt IE 7]>
|
||||||
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script>
|
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<?php wp_head(); ?>
|
|
||||||
|
<?php wp_head(); ?>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body <?php if (function_exists('body_class')) { body_class(); } ?>>
|
<body <?php if (function_exists('body_class')) { body_class(); } ?>>
|
||||||
|
@ -35,27 +37,24 @@
|
||||||
<?php get_sidebar('above'); ?>
|
<?php get_sidebar('above'); ?>
|
||||||
|
|
||||||
<div id="page-head"></div>
|
<div id="page-head"></div>
|
||||||
<?php if (!$comicpress_options['disable_page_restraints']) {
|
<?php if (!$comicpress_options['disable_page_restraints']) {
|
||||||
if (is_cp_theme_layout('standard,v')) { ?>
|
if (is_cp_theme_layout('standard,v')) { ?>
|
||||||
<div id="page-wrap"><!-- Wraps outside the site width -->
|
<div id="page-wrap"><!-- Wraps outside the site width -->
|
||||||
<div id="page"><!-- Defines entire site width - Ends in Footer -->
|
<div id="page"><!-- Defines entire site width - Ends in Footer -->
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<div id="page-wide-wrap">
|
<div id="page-wide-wrap"><!-- Wraps outside the site width -->
|
||||||
<div id="page-wide">
|
<div id="page-wide"><!-- Defines entire site width - Ends in Footer -->
|
||||||
<?php }
|
<?php }
|
||||||
} ?>
|
} ?>
|
||||||
|
|
||||||
<?php if (comicpress_check_child_file('partials/headerarea') == false) { ?>
|
<?php if (comicpress_check_child_file('partials/headerarea') == false) { ?>
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<?php if (function_exists('the_project_wonderful_ad')) { ?>
|
<?php if (function_exists('the_project_wonderful_ad')) {
|
||||||
<div class="headerpwad">
|
the_project_wonderful_ad('header');
|
||||||
<?php the_project_wonderful_ad('header'); ?>
|
} ?>
|
||||||
</div>
|
<h1><a href="<?php bloginfo('wpurl'); ?>"><?php bloginfo('name') ?></a></h1>
|
||||||
<?php } ?>
|
|
||||||
<h1><a href="<?php bloginfo('wpurl'); ?>"><?php bloginfo('name') ?></a></h1>
|
|
||||||
<div class="description"><?php bloginfo('description') ?></div>
|
<div class="description"><?php bloginfo('description') ?></div>
|
||||||
<?php get_sidebar('header'); ?>
|
<?php get_sidebar('header'); ?>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php get_sidebar('menubar'); ?>
|
<?php get_sidebar('menubar'); ?>
|
||||||
|
|
Loading…
Reference in New Issue