Jump to content

Is there a way to strip embedded images from quoted replies


Skeptical

Recommended Posts

  • 2 weeks later...

A quick solution:
In your custom.css add:

.ipsQuote_contents .ipsImage, .ipsQuote_contents .ipsEmbeddedVideo {
  display: none;
}

Or aligning images (and smaller)

.ipsQuote_contents .ipsImage, .ipsQuote_contents p .ipsImage {
  float: left; 
  width: 80px; 
  height: 80px; 
  margin: 0 5px 5px 0;
}
.ipsQuote_contents .ipsEmbeddedVideo {
  display: none;
}

Hope it helps

Link to comment
Share on other sites

  • 3 weeks later...
On 11/22/2017 at 11:24 AM, Heosforo said:

A quick solution:
In your custom.css add:


.ipsQuote_contents .ipsImage, .ipsQuote_contents .ipsEmbeddedVideo {
  display: none;
}

Or aligning images (and smaller)


.ipsQuote_contents .ipsImage, .ipsQuote_contents p .ipsImage {
  float: left; 
  width: 80px; 
  height: 80px; 
  margin: 0 5px 5px 0;
}
.ipsQuote_contents .ipsEmbeddedVideo {
  display: none;
}

Hope it helps

I've been looking for this for ages. Thank you!

I ended up doing this, to maintain aspect ratio of the thumbnails:

.ipsQuote_contents .ipsImage, .ipsQuote_contents p .ipsImage {
  float: left; 
  max-height: 80px; 
  margin: 0 5px 5px 0;
}

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...