Using a logo in the header (wordpress)
i'm using the abcok theme for a couple of my sites and would like to use a logo instead of the blog name in the header...
now, according to the theme author, in order to use a logo, he states:
| this theme doesn't have option for header. If you want to add a logo, you can edit the file header.php under the folder wp-content\themes\abcOK, add your code in the div with id="branding". |
#banner {
width: 100%;
background-color: rgb(27,104,158);
height:340px;
margin:0;
padding: 0;
position: relative; <div id="banner">
<div id="surheader">
<?php if ($options['twitter']) : ?>
<img style="vertical-align:-3px;" alt="RSS" src="<?php bloginfo('template_directory'); ?>/images/twitter.gif" height="16" width="16" /> <a href="http://twitter.com/<?php echo $options['twitter']?>" target="_blank"><?php _e('Twitter','abcOK'); ?></a>
<?php endif; ?>
<img style="vertical-align:-3px;" alt="RSS" src="<?php bloginfo('template_directory'); ?>/images/feed-icon-16x16.gif" height="16" width="16" /> <a href="<?php echo ap_rssLink(); ?>"><?php _e('Entries RSS','abcOK'); ?></a> | <a href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comments RSS','abcOK'); ?></a>
</div>
<div id="branding">
<div id="blog-title"><span><a href="<?php bloginfo( 'url' ) ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home"><?php bloginfo( 'name' ) ?></a></span></div>
<div id="blog-description"><?php bloginfo( 'description' ) ?></div>
</div><!-- #branding -->
</div> -
ntemple -
Thanks
{{ DiscussionBoard.errors[3195711].message }} -