Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

nuBuilder in Center of the Screen

Locked
forgot
Posts: 42
Joined: Thu Aug 09, 2012 8:52 pm

nuBuilder in Center of the Screen

Unread post 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
admin
Site Admin
Posts: 2781
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5
Been thanked: 1 time

Re: nuBuilder in Center of the Screen

Unread post by admin »

Maxim,

Have you looked at what can be done with nuBuilder Styles?

http://wiki.nubuilder.com/tiki-index.ph ... structure=

Steven
admin
Site Admin
Posts: 2781
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5
Been thanked: 1 time

Re: nuBuilder in Center of the Screen

Unread post 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
forgot
Posts: 42
Joined: Thu Aug 09, 2012 8:52 pm

Re: nuBuilder in Center of the Screen

Unread post 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
admin
Site Admin
Posts: 2781
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5
Been thanked: 1 time

Re: nuBuilder in Center of the Screen

Unread post by admin »

Thanks
Locked