Quote and BB script

the100yen

Member
I am hoping someone can help me with this...
When my user quote other users post with youtube video or something, it shows on quote.

How would I go about to delete the youtube video or picture or whatever from the quote?
 
Add this to EXTRA.css for images:
Code:
.bbCodeBlock img {
display: none;
}

I can't seem to get it to work for videos - I tried various things.
I just use this anyway to keep quoted content short:
Code:
.bbCodeQuote {
max-height: 106px;
overflow: auto;
}
 
Add this to EXTRA.css for images:
Code:
.bbCodeBlock img {
display: none;
}

I can't seem to get it to work for videos - I tried various things.
I just use this anyway to keep quoted content short:
Code:
.bbCodeQuote {
max-height: 106px;
overflow: auto;
}
Thanks, will try it out tonight!
 
Top Bottom