I am currently running a blog on accountanttown.com/site/ As you can see I am having some logo problems with the theme. How do I make my header image clickable so that I can come back to the blog homepage? Also, I would like to make it so that I can have a banner in the header to the right of the logo. Conceptually some type of frame situation where the logo was on the left and the banner on the right. Any wordpress experts out there that have ideas?
It's easy go to your wp-admin>appearance>editor. Look for header.php, find where the header is, it should be on a <img> tag. Just place <a> tag on it. ^_^
Please replace: <div id="header"> <h1><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></h1> <p class="description"><?php bloginfo('description'); ?></p> </div><!--end header--> Code (markup): by: <div id="header" [COLOR=#ff0000]onclick="location.replace('<?php echo get_option('home'); ?>');"[/COLOR] style="cursor:pointer;cursor:hand;"> <h1><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></h1> <p class="description"><?php bloginfo('description'); ?></p> </div><!--end header--> Code (markup):
Perfecto dthoai any idea how I could insert an adsense banner to the right of the logo in the big whitespace?
Please insert following snippet before <div id="header" ...> <div style="position:absolute;top:7px;left:282px;width:710px;height:110px;overflow:hidden;"> [COLOR=#ff0000]Your adsense code go here[/COLOR] </div> <div id="header" ... Code (markup):