How do I change the width of popup.html? I've attempted changing the width of the div in it but that seems to have no effect.
Here is what I've tried...
<div id='poppingup' style = "min-width: 300px; display:none">
In HTML Executable, you can define several properties for pop-up windows: go to Application Settings => Pop-Ups. You may define the default size for new pop-up windows: enter the desired width and height in the different fields.
You can set height and width of your popup window by using window. resizeTo(preferedWidth, preferedHeight) function. If you want to set this inside a popup window not from parent window than self. resizeTo(preferedWidth, preferedHeight); will do the job for you.
The popup window sizes are set to the Chrome's largest possible limits. Alternatively you can set this Option > Button > "Open Checker Plus detached" then open the popup by clicking the icon and resize the window. The next time you open the popup it will remember that size.
Popup width is determined by the visible content, so either make your div visible or apply min-width
to body
:
body { min-width:300px; }
(there is also a limit on max width, I think it is 800px)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With