Okay, so I've added this code, and everything works fine:
But, I don't want this icon to show up on images that have absolute links tied to them. I tried the following, but it doesn't work:
I know this method will work, but I know I'll end up a ton of image links down the road:
Code:
a[href^="http:"] {
background: url(images/externallink.gif) no-repeat right top;
padding-right: 10px;}
But, I don't want this icon to show up on images that have absolute links tied to them. I tried the following, but it doesn't work:
Code:
a img[href^="http:"] {
background: none;}
I know this method will work, but I know I'll end up a ton of image links down the road:
Code:
a[href^="http://www.someabsolutelink.com"],
a[href^="http://www.someabsolutelink2.com"]
{
background: none;
padding-right: 0;}