Resizing HTML block popup window
Permalink
Hello,
Where can I adjust the size of the edit window for the html block? I was able to adjust the textarea box where the code is within the window, but not the window itself. Any help would be greatly appreciated!
Thank You!
Where can I adjust the size of the edit window for the html block? I was able to adjust the textarea box where the code is within the window, but not the window itself. Any help would be greatly appreciated!
Thank You!
Yep, tried that. Didn't work. If found the file in concrete/blocks/html/controller.php
I think that those btInterfaceWidth/Height variables that Scott mentioned are only used during installation of the block. If your block is already installated, then try changing the width and height within the BlockTypes table in your database.
Tony,
That was it! Thank you!
:)
That was it! Thank you!
:)
didn't dig into the db to see if it is stored there, probably should have :)
protected $btInterfaceWidth = "400";
protected $btInterfaceHeight = "170";
increase the second one to whatever you see fit.