I have styled any external links on my site to automatically add an icon after the link to any domain off my site using:
a[href^="http://"]:not([href*="website.com"]):after {
font-family: "FontAwesome";
content: "\f08e";
font-size: 10px;
padding-left: 2px;
}
I have an image on the page that opens a lightbox with a Google Map in it, so the above code thinks it's an external link and adds the icon after the image. Is there a way to basically say links from anotherdomain.com, don't apply the style?
I tried adding maps.google.com to the option above, but it didn't work. I'm not sure if it supports multiple values?
Any help would be greatly appreciated! Thanks in advance!!