Thanks in advance for your help!
I have RSS, I want to publish the contents of this RSS on my page, but RSS is from WordPress and contains a button image for comments.
Problem 1: if I hide each <img> from RSS, I will also hide the images published in the article from the blog.
Problem 2: the comment button <img> is consistent, so even if I could hide "wordpress.com/comments / ... 12", the next <img> url button is "wordpress.com/comments / ... 13" and so on: (
HTML images:
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mulleralc.wordpress.com/35/">
There is one way to identify the comment button image: its 72px by 16px. So I need to hide every image on my page that is 72 (width) x 16 (height). Is there a way to do this in CSS or JavaScript?
Since we have this encoding:
img[src~="http://...url..."] {display: none;}
maybe something like:
img[height="16"] {display: none;}
source share