How/Where can I make my header hyperlink to the home page of the blog? Here is the URL: http://bernsteinmedical.com/blog/
If you could show me the code that would GREAT.
Thanks
-Doug
Hyperlink an image in the header?
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Hyperlink an image in the header?
Hi!
For making a link, you need an "<a href...>" tag inside the code of your index.tpl.
So the best thing is to not use CSS for inserting the banner, but plain HTML:
Then only use CSS to make those tags properly align the way you want it?
Best regards,
Garvin
For making a link, you need an "<a href...>" tag inside the code of your index.tpl.
So the best thing is to not use CSS for inserting the banner, but plain HTML:
Code: Select all
<div id="serendipity_banner">
<a href="http://yourblog/"><img src="/img/header.jpg" /></a>
</div>
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
You'll need to do that via CSS: Something along these lines:
Regards,
Garvin
You'll need to do that via CSS: Something along these lines:
Code: Select all
.serendipity_banner img {
border: 0px;
}
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/