[WP Question] How can I add a banner at the top?

cutemohamed

Junior Member
Joined
Mar 17, 2011
Messages
101
Reaction score
15
Hi,

I want to put banners at the top and bottom of the wp blog. I can put in the sidebar only because I can add in a text widget to the sidebar.

How can I put them on the top and bottom if my theme doesnt support that?Thanks in advance
 
If you would like to use an image instead of the text you have to replace the following code in header.php:
Code:
<div id="logo">
    <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    <span id="blogDescription"><?php bloginfo('description'); ?></span>
</div>

with

Code:
<div id="logo">
    <a href="<?php echo get_option('home'); ?>/"><img src="link to image" alt="" title="" /></a>
</div>
 
Back
Top