hover effect on backgroun logo image
Posted: Sun Jan 21, 2007 11:19 pm
Hi,
I could not find a solution for this and it almost seems like it does not bother anyone, but the
the a:hover effect when mousing over the logo (it flashes) (which is set as a background) is driving me mad.
How do i set a special a:hover so that there is no colour change or "flash" when mousing over the logo/background?
Now if i set a background and hard code the link to my logo image in the CSS, this solves the hover effect on the background but now i cant link my logo to the home page. If I add in an a href tag around the logo, it dissappears.
here is my header currently:
if i do this:
the logo dissappears.
using the default hover effects and simply added a background image to the header div.
Thanks
john
I could not find a solution for this and it almost seems like it does not bother anyone, but the
the a:hover effect when mousing over the logo (it flashes) (which is set as a background) is driving me mad.
How do i set a special a:hover so that there is no colour change or "flash" when mousing over the logo/background?
Now if i set a background and hard code the link to my logo image in the CSS, this solves the hover effect on the background but now i cant link my logo to the home page. If I add in an a href tag around the logo, it dissappears.
here is my header currently:
Code: Select all
<div id="header">
<div id="lang">{lang}</div>
<h1><img src="images/cms/thfc-logo.jpg"></h1>
<hr class="accessibility" />
</div>
Code: Select all
<div id="header">
<div id="lang">{lang}</div>
<h1><a href="index.php"><img src="images/cms/thfc-logo.jpg"></a></h1>
<hr class="accessibility" />
</div>
using the default hover effects and simply added a background image to the header div.
Thanks
john