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
25
header.php
25
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="pingback" href="<?php bloginfo('pingback_url') ?>" />
|
||||
<meta name="ComicPress" content="<?php echo $comicpress_options['comicpress_version']; ?>" />
|
||||
|
||||
<!--[if lt IE 7]>
|
||||
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/ie6submenus.js"></script>
|
||||
<![endif]-->
|
||||
<?php wp_head(); ?>
|
||||
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php if (function_exists('body_class')) { body_class(); } ?>>
|
||||
|
@ -35,26 +37,23 @@
|
|||
<?php get_sidebar('above'); ?>
|
||||
|
||||
<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')) { ?>
|
||||
<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 -->
|
||||
<?php } else { ?>
|
||||
<div id="page-wide-wrap">
|
||||
<div id="page-wide">
|
||||
<div id="page-wide-wrap"><!-- Wraps outside the site width -->
|
||||
<div id="page-wide"><!-- Defines entire site width - Ends in Footer -->
|
||||
<?php }
|
||||
} ?>
|
||||
|
||||
<?php if (comicpress_check_child_file('partials/headerarea') == false) { ?>
|
||||
<div id="header">
|
||||
<?php if (function_exists('the_project_wonderful_ad')) { ?>
|
||||
<div class="headerpwad">
|
||||
<?php the_project_wonderful_ad('header'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<div id="header">
|
||||
<?php if (function_exists('the_project_wonderful_ad')) {
|
||||
the_project_wonderful_ad('header');
|
||||
} ?>
|
||||
<h1><a href="<?php bloginfo('wpurl'); ?>"><?php bloginfo('name') ?></a></h1>
|
||||
<div class="description"><?php bloginfo('description') ?></div>
|
||||
<?php get_sidebar('header'); ?>
|
||||
<?php get_sidebar('header'); ?>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
|
Loading…
Reference in New Issue