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
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
nuBuilder in Center of the Screen
Re: nuBuilder in Center of the Screen
Maxim,
Have you looked at what can be done with nuBuilder Styles?
http://wiki.nubuilder.com/tiki-index.ph ... structure=
Steven
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
Maxim,
You could also do this..
We use it here..
https://www.nubuilder.net/demo.php
Steven
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>
https://www.nubuilder.net/demo.php
Steven
-
- Posts: 42
- Joined: Thu Aug 09, 2012 8:52 pm
Re: nuBuilder in Center of the Screen
Steven,
Thank You
Here are my index.php for center nuBuilder. enter.php is page with login fields.
Maxim
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>