I have a link icon next to each link. How do I exclude the link icon from images? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:27:18Z http://stackoverflow.com/feeds/question/59423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59423/i-have-a-link-icon-next-to-each-link-how-do-i-exclude-the-link-icon-from-images 1 I have a link icon next to each link. How do I exclude the link icon from images? scottmarlowe 2008-09-12T16:20:09Z 2008-09-12T16:59:43Z <p>I've got the following in my .css file creating a little image next to each link on my site:</p> <pre><code>div.post .text a[href^="http:"] { background: url(../../pics/remote.gif) right top no-repeat; padding-right: 10px; white-space: nowrap; } </code></pre> <p>How do I modify this snippet (or add something new) to exclude the link icon next to images that are links themselves?</p> http://stackoverflow.com/questions/59423/i-have-a-link-icon-next-to-each-link-how-do-i-exclude-the-link-icon-from-images/59448#59448 1 Answer by Thunder3 for I have a link icon next to each link. How do I exclude the link icon from images? Thunder3 2008-09-12T16:30:41Z 2008-09-12T16:30:41Z <p>It might be worth it to add a class to those <code>&lt;a&gt;</code> tags and then add another declaration to remove the background:</p> <pre><code>div.post .text a.noimage{ background:none; } </code></pre> http://stackoverflow.com/questions/59423/i-have-a-link-icon-next-to-each-link-how-do-i-exclude-the-link-icon-from-images/59454#59454 0 Answer by scunliffe for I have a link icon next to each link. How do I exclude the link icon from images? scunliffe 2008-09-12T16:31:56Z 2008-09-12T16:31:56Z <p>If you have the content of the links as a span, you could do this, otherwise I think you would need to give one scenario a class to differentiate it.</p> <pre><code>a &gt; span { background: url(../../pics/remote.gif) right top no-repeat; padding-right: 10px; white-space: nowrap; } a &gt; img { /* any specific styling for images wrapped in a link (e.g. polaroid like) */ border: 1px solid #cccccc; padding: 4px 4px 25px 4px; } </code></pre> http://stackoverflow.com/questions/59423/i-have-a-link-icon-next-to-each-link-how-do-i-exclude-the-link-icon-from-images/59469#59469 0 Answer by gz for I have a link icon next to each link. How do I exclude the link icon from images? gz 2008-09-12T16:40:38Z 2008-09-12T16:59:43Z <p>You need a class name on either the <code>a</code> elements you want to include or exclude. If you don't want to do this in your server side code or documents, you could add the classes with javascript as the page is loaded. With the selection logic wrapped up elsewhere, your rule could just be:</p> <pre><code>a.external_link { background: url(../../pics/remote.gif) right top no-repeat; padding-right: 10px; white-space: nowrap; } </code></pre> <p>It would be possible with XPath to create a pattern like yours that would also exclude <code>a</code> elements that had <code>img</code> children, however this facility has been repeatedly (<a href="http://lists.w3.org/Archives/Public/www-style/2002May/0011.html" rel="nofollow">2002</a>, <a href="http://lists.w3.org/Archives/Public/www-style/2006Oct/0009.html" rel="nofollow">2006</a>, <a href="http://lists.w3.org/Archives/Public/www-style/2007Apr/0105.html" rel="nofollow">2007</a>) proposed and rejected for CSS, largely on the grounds it goes against the incremental layout principles.</p> <p>So, while it is possible to do neat conditional content additions as you have with a contextual selector and a prefix match on the <code>href</code> attribute, CSS is considerably weaker than a general purpose programming language. To do more complex things you need to move the logic up a level and write out simpler instructions for the style engine to handle.</p> http://stackoverflow.com/questions/59423/i-have-a-link-icon-next-to-each-link-how-do-i-exclude-the-link-icon-from-images/59511#59511 3 Answer by rpetrich for I have a link icon next to each link. How do I exclude the link icon from images? rpetrich 2008-09-12T16:56:38Z 2008-09-12T16:56:38Z <p>If you set the background color and have a negative right margin on the image, the image will cover the external link image.</p> <p>Example:</p> <pre><code>&lt;style&gt; a[href^="http:"] { background: url(http://en.wikipedia.org/skins-1.5/monobook/external.png) right center no-repeat; padding-right: 14px; white-space: nowrap; } a[href^="http:"] img { margin-right: -14px; border: medium none; background-color: red; } &lt;/style&gt; &lt;a href="http://www.google.ca"&gt;Google&lt;/a&gt;&lt;br/&gt; &lt;a href="http://www.google.ca"&gt;&lt;img src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/50px-Commons-logo.svg.png"/&gt;&lt;/a&gt; </code></pre> <p>edit: If you've got a patterned background this isn't going to look great for images that have transparency. Also, your <code>href^=</code> selector won't work on IE7 but you probably knew that already</p>