This thread's question is relevant with my "actually-not-a-bug " report to @Chris D here:
https://xenforo.com/community/threa...he-redactor_box-max-height.89431/#post-876434
I just found out this piece of code inside my browser's source on a page with quick reply's redactor box:
It's quite interesting that when I edited the "overflow-y:hidden" into "overflow-y:scroll" directly on the browser's source like this:
It did bring the redactor box's scroll bar appear when the redactor box reached its previously customized max-height.
FYI, I previously set the redactor max-height to a custom height like this in extra.css:
Problem is I can't find those piece of code inside my template. It seems like {xen:raw $qrEditor}.inside quick_reply template generates them all.
Just a simple question, could you please tell me how to change that "overflow-y:hidden" above ? css way is preferrable
thanks
https://xenforo.com/community/threa...he-redactor_box-max-height.89431/#post-876434
I just found out this piece of code inside my browser's source on a page with quick reply's redactor box:
Code:
<iframe style="width: 100%; height: 104px;" frameborder="0" class="redactor_textCtrl redactor_MessageEditor redactor_BbCodeWysiwygEditor redactor_">
#document
<html>
<head>
<base href="http://localhost/community/">
<link rel="stylesheet" href="http://localhost/community/css.php?style=23&css=editor_contents&d=1420373561">
</head>
<body contenteditable="true" dir="LTR" style="overflow-y: hidden; min-height: 99px;">
<ol>
<li>
<br>
<br>
</li>
</ol>
</body>
</html>
</iframe>
It's quite interesting that when I edited the "overflow-y:hidden" into "overflow-y:scroll" directly on the browser's source like this:
Code:
<bodycontenteditable="true"dir="LTR"style="overflow-y: scroll;min-height:99px;">
It did bring the redactor box's scroll bar appear when the redactor box reached its previously customized max-height.
FYI, I previously set the redactor max-height to a custom height like this in extra.css:
Code:
.redactor_box .redactor_BbCodeWysiwygEditor
{
height: 120px!important;
}
Problem is I can't find those piece of code inside my template. It seems like {xen:raw $qrEditor}.inside quick_reply template generates them all.
Just a simple question, could you please tell me how to change that "overflow-y:hidden" above ? css way is preferrable
thanks