QUestion for the code gurus here... 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...
Using a logo in the header (wordpress)
2
QUestion for the code gurus here...
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:
here is my current code for the branding part in the syles.css file
and here is the div section in the header.php file:
can anyone help?
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:
here is my current code for the branding part in the syles.css file
Code:
#banner {
width: 100%;
background-color: rgb(27,104,158);
height:340px;
margin:0;
padding: 0;
position: relative; Code:
<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
Next Topics on Trending Feed
-
2