How do I get Brief to not load Images?

I tired poking around the forum but I'm a complete CSS newbie.
 
I found this
*/
#feed-image {
display: none;
}
in someones post but the images still load up.
A little help anybody?
 

Re: How do I get Brief to not load Images?

well, #feed-image is the logo of the website (if supported by the particular feed) - so it's not the thing you're searching for.
You could try
img { display:none; }
but only to stop images from being displayed (as it says) - they will still be loaded even when you don't see them.
That's because CSS is only about how the information provided by the feed is displayed, not about which parts are transferred to your browser. I think you can't do anything to let Brief not load images within entries.

Re: How do I get Brief to not load Images?

Thanks for the quick reply. :)