XF 1.4 The Epand to View from quoting.

New Joe

Well-known member
I see if the quote from a post is longish then it shows Expand to View which you click

Screen Shot 2557-09-26 at 7.19.12 PM.webp

Is that set or can it be adjusted?
 
Another way to remove this function is to use the EXTRA.css template. I prefer this option because I can quickly see what changes I have made to the default XenForo style.

Add this to your EXTRA.css template.

Code:
/****************************************/
/* quote box max height */
/****************************************/

.bbCodeQuote .quoteContainer .quote {
  max-height: 100% !important;
}
 
Another way to remove this function is to use the EXTRA.css template. I prefer this option because I can quickly see what changes I have made to the default XenForo style.

Add this to your EXTRA.css template.

Code:
/****************************************/
/* quote box max height */
/****************************************/

.bbCodeQuote .quoteContainer .quote {
  max-height: 100% !important;
}
Thanks, I like that way too...
 
Top Bottom