Thread: Wordpress
View Single Post
chucker
 
Join Date: May 2004
Location: near Bremen, Germany
Send a message via ICQ to chucker Send a message via AIM to chucker Send a message via MSN to chucker Send a message via Yahoo to chucker Send a message via Skype™ to chucker 
2005-11-11, 21:09

Quote:
Originally Posted by revolution
is this the right bit??


<div id="header">
<div id="headerimg">
<div class="description"><?php bloginfo('description'); ?></div>
</div>
</div>
<hr />
If you only want your description to be a link:

<div id="header">
<div id="headerimg">
<div class="description"><a href="INSERTHERE"><?php bloginfo('description'); ?></a></div>
</div>
</div>
<hr />

If you want the entire image to be one:

<div id="header">
<a href="INSERTHERE"><div id="headerimg">
<div class="description"><?php bloginfo('description'); ?></div>
</div></a>
</div>
<hr />

Whereby "INSERTHERE" gets replaced with whatever your blog's main page URL is.
  quote