To set a custom backgroundAlpha: 1 property in Webflow, you'll need to simulate this effect using RGBA or other supported CSS techniques, since Webflow doesn't recognize non-standard properties like backgroundAlpha directly.
backgroundAlpha: 1 backgroundAlpha is not a standard CSS property. It likely refers to controlling the opacity of a background, typically through RGBA colors or background-layer techniques.backgroundAlpha: 1 usually means the background should be fully opaque (no transparency).
Example:
#hero-section { background-color: rgba(255, 255, 255, 1); }#hero-section with the actual ID or class of your hero section.
To simulate backgroundAlpha: 1 in Webflow, set the background color using RGBA with an alpha of 1. You can do this directly in the Style panel or with embedded CSS code if more control is needed.