Learn how to customize the bottom 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.
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.
In the Studio, navigate to Settings > App and Intranet.
Under Custom CSS, click and hold Show Editor until the editor opens.
In the editor, copy and paste the CSS snippet.
#toolbar .toolbar-item{ background-color: #696969; color: #fff;}
#toolbar .toolbar-item .toolbar-item-title{ text-transform: uppercase;}
#toolbar .toolbar-item.selected{ color: #fff; background-color: #dd0000; font-weight: 600;}
#toolbar .toolbar-item.selected .toolbar-item-title{ font-weight: 600;}
You have customized the quicklink navigation bar of your Staffbase app.