Hi, is it possible to open the popups in full-screen mode? In the moment, everything has the size of the browser window - I need a solution, that the full Screen is filled.
Is this possible with popups API?
Regards
vistree
Hi, is it possible to open the popups in full-screen mode? In the moment, everything has the size of the browser window - I need a solution, that the full Screen is filled.
Is this possible with popups API?
Regards
vistree
Comments
Comment #1
starbow commentedYou can control the width of the popup (see the readme.txt), but there is no full screen mode.
Comment #2
vistree commentedOK, thank you!
Have a nice weekend
vistree
Comment #3
vistree commentedThank you
Comment #4
frankcarey commentedis there a way to control the height, like you can the width?
Comment #5
luckysmack commentedalso, if i change the width, i also have to re-edit the two images supplied with the theme (im using the blue theme) which isnt the easiest in the world. Once i do this i nothing lines up. the close form button at the top right does not line up and the 3 images from the sprites image show. Is there an easier way to do this or could you possibly write up just what needs to be done to make the popup wider? Mostly i want it wider because not all edit forms fit on the popup, most notably any of the configure links on /admin/build/menu/navigation or any other manu for that matter. I love the module and the style looks slick, so for what its worth good work.
@frankcarey
to change the height changing to below value seems to work for me:
.popups-body {
padding: 0 25px;
/* height: 250px; */
height: 450px;
overflow-y: auto;
overflow-x: hidden;
}
Comment #6
frankcarey commented@bigmack83 - thanks! This must really be a "max" height then? It seems for smmal confirmation dialogs, the popup is much smaller than the default values here. I assume the js figures that out somewhere, and adjusts accordingly?