Hello. I have purchased a website template which has a NavBar with Nav Menu dropdowns. Within dropdowns there are links. However I do not need that many subpages, so I removed the links from dropdowns but I want the Nav Menu categories to link to desired subpages. I tried googling it and watched some tutorials but what I see on those videos doesn’t seem to exist → the URL section to input links. I keep seeing Nav Menu dropdown settings. Can anybody help me out or send a relevant article, instructions or tutorial? Thank you in advance.
Hi there!
There are two ways to manage navigation links in your Webflow project:
Through Element Settings:
- Select the nav link you want to modify
- Click the Element Settings panel (gear icon) in the right sidebar
- Navigate to Link settings
- Choose your link type (page, section, external URL, etc.)
- Input your desired URL or select your target page
Through Navbar Settings:
- Select any element within your Navbar
- Look for the Navbar settings in the right panel
- Click “Add link” to create new navigation items
- Use the remove icon (x) next to existing links to delete them
Hopefully this helps! If you still need assistance, please reply here so somebody from the community can help.
@pvelco This is a common situation when customizing a Webflow template. By default, Nav Menu dropdowns in Webflow are just containers for links (not links themselves). So when you remove the sub-links, you’re left with a dropdown toggle that doesn’t go anywhere — and unfortunately, Webflow doesn’t allow you to add a direct link to a dropdown toggle natively.
How to Make the Dropdown Toggle Itself a Link:
Option 1: Convert Dropdown to a Link Block (No Code)
If you don’t need a dropdown anymore:
- Delete the Dropdown element entirely.
- Drag in a Link Block or Nav Link.
- Style it exactly the same as the original dropdown toggle.
- Add your desired page link to it.
This is the cleanest and easiest solution if you’re not using any dropdowns anymore.
Option 2: Use Custom Code to Make the Dropdown Toggle Clickable
If you want to keep the dropdown style/design, but make the dropdown toggle act like a link, use this small custom code:
- Select the Dropdown Toggle, give it a class like
nav-dropdown-link
. - Go to the Page Settings > Before tag, and paste:
<script>
document.querySelectorAll('.nav-dropdown-link').forEach(function(toggle) {
toggle.addEventListener('click', function(e) {
window.location.href = '/your-subpage-url'; // Replace with your actual link
});
});
</script>