Hi all,
I'm putting together a website for our social club, using Transparent Bliss 1.5 (which is awesome, btw!) and was wondering which is the best way to make logo.png clickable as a link back to the front page. My CSS skills are crappy.
I see the .html file just defines the div section for the logo, and specification of the logo itself happens in template.css..
update: never mind, googled it after I got back from lunch - posting it here for others' benefit - from
webdevnews.net/2007/01/css-trick-turning...to-a-
clickable-link/
in the html, change
| Code: |
<div id="logo"></div>
|
to
| Code: |
<div id="logo"><a href="/portal/
"><span>Back to the Main Page</span></a></div>
|
then in template.css, add
to the "#logo {" section, and add this bit below it (after the #logo section is closed).
| Code: |
#logo a span {
visibility: hidden;
}
|
Hopefully I've transcribed this correctly, and someone finds it useful someday.
Cheers,
Brett