huyunoadmin
Member
Posted 5 years ago #
<div id="head">
<h1><a>/"><strong><?php bloginfo('name'); ?></strong></a></h1>
<p><?php bloginfo('description'); ?></p>
</div>
...I'd like to change the automated name from the options page to include an image on my server. I tried using img (images/image name.jpg) but it didn't work.
Any suggestions? Thanks :)
Edit header.php.
Replace
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<p><?php bloginfo('description'); ?></p>
with
<img src="path/to/your/image/header.jpg" width="" height="" alt=""/>
katislurps
Member
Posted 4 years ago #
I just wanted to say , that I had spent hours trying to figure out how to get a gif image into my header in just the right spot, and I tried this, and wala! It worked, I was so happy, thank you : )
cindigo
Member
Posted 4 years ago #
Thanks, this helped me too!