rgba(0,0,0,0)) instead of using opacity on Navbar and Form components. .w-nav, .w-form, .w-input) using the Navigator Panel.You're encountering an issue where Webflow components like the Navbar and Form Fields appear to ignore opacity settings, often still displaying a light gray background. This isn't a bug, but rather a result of default styles being applied at the component or child-element level, which you must override correctly.
#f8f8f8 or similar)..w-nav, .w-form) rather than the component's top-level element you’re editing.
rgba(0,0,0,0)).
Avoid using the Opacity property on the entire element unless you're explicitly trying to make everything within that element (text, links, etc.) partially transparent.
.w-container or .w-form.
Example elements to target:
.w-nav.w-form, .w-input, .w-field
.w-input, .w-select) may have its own default background color.rgba(0,0,0,0)) under the Style Panel → Background → Color.
To make components like the Navbar or Form Fields fully transparent, don't rely on setting opacity. Instead, explicitly set the background color to rgba(0,0,0,0) for the parent and child elements. Webflow's default styles often apply background colors to internal wrapper elements, so you must override these specifically to achieve full transparency.