Webflow sync, pageviews & more.
NEW

How can I style the currently selected link in my Webflow Navbar without a Current state class? I want to differentiate the link for the active page, such as adding a line below the link text.

TL;DR
  • Add a unique data-page attribute (e.g., data-page="about") to each Navbar link corresponding to its page slug.
  • Insert a JavaScript snippet before to detect the current URL path and apply an "active-link" class to the matching nav item.
  • Create and style the "active-link" class in Webflow to visually highlight the active page.
  • Handle edge cases like the homepage by defaulting empty pathname to "home" in the script.

To style the active page link in your Webflow Navbar without relying on the built-in "Current" state, you’ll need to use a combination of custom attributes and custom code.

  • Go through each Navbar link in your project.
  • Add a unique class or set a custom attribute (like data-page="about").
  • Use values like home, about, contact to match the page slug.

2. Embed Custom Code in <head> or Before </body>

  • In Webflow, go to Page Settings or Project Settings > Custom Code.
  • Add a custom <script> to detect the current pathname and match it with data-page values.

Example inline script (added before </body> tag):

<script>  document.addEventListener("DOMContentLoaded", function() {    const path = window.location.pathname.replace("/", "").toLowerCase(); // get current slug    const activeLink = document.querySelector(`a[data-page="${path}"]`);    if (activeLink) {      activeLink.classList.add("active-link");    }  });</script>

3. Create a Custom Class for Active Styling

  • In the Webflow Designer, create a class called active-link.
  • Style it however you like (e.g., add a bottom border or underline).
  • Example styles:
  • Border Bottom: 2px solid #000
  • Font Weight: Bold
  • Text Color: Different from default

4. Handle the Home Page Special Case

  • For your homepage, pathname may return an empty string ("").
  • In your script, check for that and assign data-page="home" to the Home link.
  • Update script to handle this:
const path = window.location.pathname.replace("/", "").toLowerCase() || "home";

Summary

To style active navbar links without using Webflow’s "Current" state, add a unique data-page attribute to each link, then use a small JavaScript snippet to add a custom class to the link matching the current page slug. Style the active-link class in Webflow to achieve the visual effect like an underline or color change.

Rate this answer

Other Webflow Questions