Page 1 of 1
nuBuilder in Center of the Screen
Posted: Tue Oct 09, 2012 9:20 pm
by forgot
Hello
I use wide display and then I open nuBuilder it align to upper left corner. For my (and I hope for others) it isn't very useful.
Is it possible place nuBuilder window in center of browser window?
--
Maxim
Re: nuBuilder in Center of the Screen
Posted: Wed Oct 10, 2012 5:20 am
by admin
Maxim,
Have you looked at what can be done with nuBuilder Styles?
http://wiki.nubuilder.com/tiki-index.ph ... structure=
Steven
Re: nuBuilder in Center of the Screen
Posted: Fri Oct 19, 2012 1:17 am
by admin
Maxim,
You could also do this..
Code: Select all
<iframe scrolling="no" frameborder="0" width="1200" height="800" src="http://demo.nubuilder.com/db/samplenufinancial/"></iframe>
We use it here..
https://www.nubuilder.net/demo.php
Steven
Re: nuBuilder in Center of the Screen
Posted: Tue Oct 30, 2012 10:16 am
by forgot
Steven,
Thank You
Here are my index.php for center nuBuilder. enter.php is page with login fields.
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<style type='text/css'>
.mainNuBuilderContainer {
width: 1000px;
height: 700px;
margin: 30px auto 10px auto;
}
</style>
<body>
<div class="mainNuBuilderContainer" >
<iframe scrolling="no" frameborder="0" width="1000" height="700" src="enter.php">
</iframe>
</div>
</body>
</html>
Maxim
Re: nuBuilder in Center of the Screen
Posted: Thu Nov 01, 2012 3:27 am
by admin
Thanks