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!

 
ScottC replied on at Permalink Reply
ScottC
check out the controller in the block itself, you will see values

protected $btInterfaceWidth = "400";
protected $btInterfaceHeight = "170";


increase the second one to whatever you see fit.
sunriser replied on at Permalink Reply
Yep, tried that. Didn't work. If found the file in concrete/blocks/html/controller.php
Tony replied on at Permalink Reply
Tony
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.
sunriser replied on at Permalink Reply
Tony,

That was it! Thank you!

:)
ScottC replied on at Permalink Reply
ScottC
didn't dig into the db to see if it is stored there, probably should have :)