Okay, so I've been trying to add opacity to all images with links. When I say 'with links' I mean images that have a link if you click the image.
I've tried this code, but it did not work
I know this code below works, but it just does every single image, link or not.
I've tried this code, but it did not work
- Code:
img a {
opacity: 1.00;
}
img a:hover {
opacity: 0.80;
}
I know this code below works, but it just does every single image, link or not.
- Code:
img {
opacity: 1.00;
}
img:hover {
opacity: 0.80;
}
Last edited by !_NICK_! on December 2nd 2012, 7:01 pm; edited 1 time in total