• I’m using the Codium Extend theme, and am trying to make the header link back to the home page. I’m using a custom image, but can’t seem to work out how to alter the code.

    Does anyone have any ideas? There are a few posts related to this already for other themes, but I can’t get any of the tips there to work..

Viewing 1 replies (of 1 total)
  • 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?

Viewing 1 replies (of 1 total)

The topic ‘Make Codium Extend header image a link?’ is closed to new replies.