Page 1 of 1

Breadcrumb holders wrapped on smartphones

Posted: Fri Oct 25, 2019 2:38 pm
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

Re: Breadcrumb holders wrapped on smartphones

Posted: Fri Oct 25, 2019 9:01 pm
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;}

Re: Breadcrumb holders wrapped on smartphones

Posted: Fri Oct 25, 2019 9:08 pm
by kev1n
Good to know, thanks!