richardho
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make Codium Extend header image a link?I am having the same problem. Looked at it for ages and cant figure it out.
if (get_header_image() != ”){
?><style type=”text/css”>
div#header {
background: url(<?php header_image(); ?>); height :115px; -moz-border-radius-topleft:6px;border-top-left-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;
}
<?php if ( ‘blank’ == get_header_textcolor() ) { ?>
h1.blogtitle,.description { display: none; }
<?php } else { ?>
h1.blogtitle a,.description { color:#<?php header_textcolor() ?>; }
<?php
} ?>
</style><?php
}
}this is part of the code, the css location of interest is
/* header */
div#header{margin:7px 0 0 0; padding:1em 1em 1em 1em; height:8em; background:transparent}
div#headertop{margin:0 0 0 0; background-color:transparent}lastly the header.php file of interest is
<div id=”wrapperpub”>
<div id=”header”>
<div class=”dp100″>
<h1 id=”blog-title” class=”blogtitle”>” title=”<?php bloginfo(‘name’) ?>”><?php bloginfo(‘name’) ?></h1>
<div class=”description”><?php bloginfo(‘description’); ?> </div>
</div><!– dp100 –>
</div><!– #header –>
</div><!– #wrapperpub –>any advise?