Remove Click To Expand [Deleted]

AndyB

Well-known member
AndyB submitted a new resource:

Remove Click To Expand - Removes the Click To Expand requirement to see an entire quote.

Description:

Removes the Click To Expand requirement to see an entire quote.

The default XenForo code forces the viewer to click a link called "Click to Expand" if they want to see the entire quote in a message. This add-on removes this limitation.

Modifies the code in the following template:
  • bb_code_tag_quote
Requirements:
  • This add-on works with XenForo v1.2x and above
  • Only works with default templates
Installation:
  1. ...

Read more about this resource...
 
I just realized the best way to accomplish this is to add this to your EXTRA.css template:

Code:
.bbCodeQuote .quoteContainer .quote {
  max-height: 100% !important;
}
 
Top Bottom