A little bit of help here would be appreciated for those who are familiar with the Default Theme of Wordpress. I would like to upload my own header image and get that hyperlinked without the Blog Info and Description Text. Any help would be appreciated. Thanks.
Hi, Just open up the header.php file in the content->themes->default directory and edit the following code: <div id="header"> <div id="headerimg"> <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div> <hr /> Code (markup): Replace it with the image and remove the parts you don't want to display. HTH
Could you post the exact code I would need to replace it with if I wanted to: Delete the Blog Title and Description Keep the KubrickHeader.jpg and HyperLink that. I would appreciate it as I am clueless at the moment.
Ok, I cannot test this as all of my blogs are using custom themes, but give this a test and let me know if it works: <div id="header"> <a href="http://www.test.com/"><div id="headerimg"></div></a> </div> <hr /> Code (markup):
Ok, well the only other thing I can suggest is to switch out the: <div id="headerimg"></div> Code (markup): And replace it with an image: <img src="path/to/new/header.gif" /> Code (markup):