Rather than fixed to the top, allow the moving/repositioning of nuBreadcrumbholder and nuActionholder to other places on the screen i.e. left/right/bottom.
With more widescreen devices available it makes more sense to have the ability to move these from taking up a lot of horizontal space, and instead allowing these to be moved to a vertical position.
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Change Position of nuBreadcrumbholder & nuActionholder [done]
-
- nuBuilder Team
- Posts: 4480
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 75 times
- Been thanked: 500 times
- Contact:
Re: Change Position of nuBreadcrumbholder & nuActionholder
This is just mockup of what a vertical layout could look like.
I applied float: left; to the nuBreadcrumbholder & nuActionholder, set a width among some other style changes.
I applied float: left; to the nuBreadcrumbholder & nuActionholder, set a width among some other style changes.
You do not have the required permissions to view the files attached to this post.
Re: Change Position of nuBreadcrumbholder & nuActionholder
Interesting, where did you make the changes? I was looking about trying to find where I can change them.
-
- nuBuilder Team
- Posts: 4480
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 75 times
- Been thanked: 500 times
- Contact:
Re: Change Position of nuBreadcrumbholder & nuActionholder
Override the function nuResize() by declaring your own in Setup -> Header like:
A few things still need to be done, like positioning the logout button.
Code: Select all
function nuResize() {
var h = window.innerHeight;
$('#nuActionHolder').css({
'width': '100px',
'float': 'left',
'height': h,
'border-right': 'solid',
'border-right-width': 'thin'
});
$('#nuBreadcrumbHolder').css({
'width': '200px',
'float': 'left',
'height': h
});
$('.nuTabTitleColumn').css('width', '100%');
$('body').css('width', '100%');
nuSetVerticalTabs();
}
function nuOnLoad() {
nuResize();
}
A few things still need to be done, like positioning the logout button.