Skip to main content

Customize Bottom Navigation in Apploy PWA

Learn how to personalize the bottom navigation in your Apploy PWA to match your brand's style.

Vikash Jha avatar
Written by Vikash Jha
Updated over 3 weeks ago

Apploy PWA includes a bottom navigation that can be activated in the theme settings. This navigation appears at the bottom of the screen, providing easy access to key sections of your store.


​

The bottom navigation can be fully customized using our dashboard and a bit of CSS code.


​

Follow these guidelines to customize the navigation:

Here is the structure of the navigation menu bar.

- nav container - .apploy-main-nav
-- nav items - .apploy-main-nav-item | .apploy-main-nav-item.active when active
--- nav item icon
--- nav item badge(if cart) - .apploy-cart-badge

Sample Code:

<nav class="apploy-main-nav" id="apploy-main-nav">
<a href="/" class="apploy-main-nav-item active">
<img src="home-icon.png" alt="Home" width="24" height="24">
</a>
<a href="/collections" class="apploy-main-nav-item">
<img src="collections-icon.png" alt="Collections" width="24" height="24">
</a>
<a href="/cart" class="apploy-main-nav-item">
<img src="cart-icon.png" alt="Cart" width="24" height="24">
<span class="apploy-cart-badge" id="apploy-cart-badge">
2
</span>
</a>
<a href="/account" class="apploy-main-nav-item">
<img src="account-icon.png" alt="Account" width="24" height="24">
</a>
</nav>

Guidelines:

  1. Avoid changing the navigation's position

  2. Ensure icons are not hidden

  3. Keep the maximum height at 70px

Did this answer your question?