Customize the Quick Link Navigation Bar for Mobile Apps

Learn how to customize the quick link navigation bar on your mobile apps with the help of custom CSS.

The ease of navigation of your app determines the experience it provides to its users. The bottom navigation bar is vital in providing ease of navigation. In this tutorial, we take you through how to customize the quick link navigation bar according to your user needs and branding guidelines.

Custom Mobile Navigation

After this tutorial, you will be familiar with the CSS selectors required to customize the quicklink navigation bar of your mobile app.

Using custom CSS can result in undesired formatting or styling. Use custom CSS only if you have experience working with CSS, and always double-check what your app looks like after applying your styles.

Prerequisites

  • You have activated and configured a Quick Link Navigation Bar for your mobile app.
  • You have the role of an administrator in the Staffbase Studio.

Customize the Quick Link Navigation Bar for Mobile Devices

  1. In the Studio, click the gear wheel to open the settings.

  2. Under Customization, click Branding.
    The Branding page opens.

  3. Under Custom Styling, click Adjust the styling of your app.
    The Custom Styling editor opens.

  4. In the editor, copy and paste the CSS lines.

1#toolbar .toolbar-item{
2 background-color: #696969;
3 color: #fff;
4}
5
6#toolbar .toolbar-item .toolbar-item-title{
7 text-transform: uppercase;
8}
9
10#toolbar .toolbar-item.selected{
11 color: #fff;
12 background-color: #dd0000;
13 font-weight: 600;
14}
15
16#toolbar .toolbar-item.selected .toolbar-item-title{
17 font-weight: 600;
18}
  1. Click Preview to test your CSS customizations.

  2. Save the changes.

You have customized the quicklink navigation bar of your Staffbase app.

Additional Helpful Information