Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Breadcrumb holders wrapped on smartphones

Questions related to customising nuBuilder Forte with JavaScript or PHP.
Post Reply
Janusz
nuBuilder Team
Posts: 508
Joined: Fri Dec 28, 2018 1:41 pm
Location: Krakow, Poland
Has thanked: 10 times
Been thanked: 18 times

Breadcrumb holders wrapped on smartphones

Unread post by Janusz »

Hi
On the smartphone I have some difficulties with the Breadcrumb holders as they are wrapped and afterwards difficult to use.
Is it possible to force them to behave as on PC? - I mean to switch off wrapping.
Belowe a link to picture showing the issue:
https://drive.google.com/open?id=1CEAPO ... 8QwA5SyLHV
If you like nuBuilder, please leave a review on SourceForge
Janusz
nuBuilder Team
Posts: 508
Joined: Fri Dec 28, 2018 1:41 pm
Location: Krakow, Poland
Has thanked: 10 times
Been thanked: 18 times

Re: Breadcrumb holders wrapped on smartphones

Unread post by Janusz »

so after some trials i have it :-)
in case someone would need it:

Code: Select all

for single form - placed in Form JS
           $('#nuActionHolder').css("white-space", "nowrap");
           $('#nuActionHolder').css("display", "flex");
           $('#nuBreadcrumbHolder').css("white-space", "nowrap");

for all - placed in Header
                .nuActionHolder{ white-space: nowrap; display: flex;}
                .nuBreadcrumbHolder{ white-space: nowrap;}
Last edited by Janusz on Sat Oct 26, 2019 9:21 pm, edited 1 time in total.
If you like nuBuilder, please leave a review on SourceForge
kev1n
nuBuilder Team
Posts: 4416
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 74 times
Been thanked: 472 times
Contact:

Re: Breadcrumb holders wrapped on smartphones

Unread post by kev1n »

Good to know, thanks!
Post Reply