To change the visited link color in the navbar in Webflow, you need to target the :visited state of the link class. Webflow's built-in Designer only supports limited pseudo-class styling, so a workaround using custom CSS is required.
navbar-link.
<head> tag section:
`<style>
.navbar-link:visited {
color: #yourColorCode !important;
}
</style>`
#yourColorCode with the desired hex value (e.g., #888888 for grey).
To change visited link colors in your navbar, assign a shared class and use custom CSS with the :visited pseudo-class. Add it in the page’s or site’s <head> section and publish your site to preview the effect.