Hi all,
How do I remove the background color when I mouse over the images in the right side column?
Can be clearly seen in IE6...
this issue here... http://www.cliathdesigns.com/
Thanks.
| SitePoint Sponsor |



Hi all,
How do I remove the background color when I mouse over the images in the right side column?
Can be clearly seen in IE6...
this issue here... http://www.cliathdesigns.com/
Thanks.

Hi,
In styling.css change the background colour of a:hover element to #FFFFFF.
This is the last style being loaded so the link elements hover state is determined by within it (producing a gray backround on hover state).
thejackel, that will also change it for all other links.
if you want to just reset the one's for the images in the sidebar then add the following to your css
Code:#sidebar a:hover { background-color: #FFF; }
Bookmarks