CSS adjustments for the custom-image-header.php apparently there was an extra } all this time.

Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
Philip M. Hofer (Frumph) 2009-12-26 05:54:22 -08:00
parent 463edd67d2
commit 7ab9c22c9c
1 changed files with 25 additions and 25 deletions

View File

@ -36,12 +36,12 @@ if ($comicpress_options['enable_custom_image_header']) {
function theme_header_style() {
?>
<style type="text/css">
#header
{
#header {
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
background: url(<?php header_image(); ?>) no-repeat center;
background: url(<?php header_image(); ?>) center center no-repeat;
}
<?php
@ -51,18 +51,18 @@ if ($comicpress_options['enable_custom_image_header']) {
#header h1, #header .description {
display: none;
}
<?php } else {
// Otherwise, set the color to be the user selected one
?>
#header *
{
#header * {
color: #<?php header_textcolor();?>;
}
}
<?php } ?>
</style>
<?php
}
<?php }
if ( function_exists('add_custom_image_header') ) {
add_custom_image_header('theme_header_style', 'theme_admin_header_style');