Okay I've got this little stupid snag I've run into. On my site I wanna seperate texual link hovers from image link hovers. On the images I dont want ANY hover effects so I specified
Okay I've got this little stupid snag I've run into. On my site I wanna seperate texual link hovers from image link hovers. On the images I dont want ANY hover effects so I specified
Yes. Your cascading is wrong. img a:hover</img> looks for an A element that is a descendant of an IMG element. This is not possible. You'll want to use a:hover img.
--
ILOVESIGNATURES
Comment, to get comments.
Share your kindness, not your hate.
Love the art, before yourself.
Daily Literature Deviations is a group that is dedicated to bringing literature to the forefront of the deviantArt community. We attempt to accomplish this by daily featuring Literature artists from around the community that deserve the recognition, but are not getting it.
Each day we will feature 10 deviations from the Literature categories in a News Article. In order to support the artists that we feature, we ask that you the news article as well as check out the individual pieces. We understand that each day you may not be able to check out each and every one of the pieces, everyone has their own things going on. We just ask that you make an attempt to help support the growing Literature community.
Daily Literature Deviations is a group that is dedicated to bringing literature to the forefront of the deviantArt community. We attempt to accomplish this by daily featuring Literature artists from around the community that deserve the recognition, but are not getting it. Each day we will feature 10 deviations from the Literature categories in a News Article. In order to support the artists that we feature, we ask that you the news article as well as check out the individual pieces. We understand that each day you may not be able to check out each and every one of the pieces, everyone has their own things going on. We just ask that you make an attempt to help support the growing Literature community.
When it comes to community spirit, `Rushy is a shining example. From participating in devmeets, to providing positive encouragement to other artists, `Rushy can always be found demonstrating what it really takes to be a true deviant. It's without any hesitation that we are delighted to award the Deviousness Award for July 2009 to `RushyRead More
img a:hover {
border:0px none;
background: url(none);
text-decoration: none;
display: none;
here's a sample of what I'm talking about, I don't want any img rollover effects whatsoever.
Am I doing something wrong here?