I already tested this solution on your site, so I know 100% it does the job.Keep in mind that this is only one way to do it.
Another way is like
janaf is saying, surrounding the img Element inside the anchor element.
MY SOLUTIONYou need first try to locate the HTML markup below inside your index.php.
I believe is in there, but I will never be sure only until I check the template myself
Find this markup.
Code:
<div id="logo"></div>
Changed for this.
Code:
<div id="logo"><a href="http://mysite.com" class="link-logo"></a></div>
Make sure you insert your Link inside
http://mysite.comFinally go to your CSS Style
template.css or
black.css, either way is fine and then insert this CSS all the way to the bottom will be fine.
Code:
. link-logo {
display: block;
height: 100px;
width: 850px;
}
You can also inserted after this CSS Rule
Code:
div#logo {
background: url("../images/logo.png") no-repeat scroll 0 0 transparent;
float: left;
height: 100px;
left: 0;
margin-left: 100px;
margin-top: 10px;
position: absolute;
width: 850px;
}
_________________
http://cmsteachings.com - Joomla Tips & Tutorials
http://ubrainmedia.com - My Joomla Company
My Joomla Advice is my personal experience. It does not means I am right or wrong. It just means that I work with Joomla in my own way and it works for me.