Hero Section page-2
) and set it to Display: None to hide it only on the desired page.To hide a section on duplicated pages in Webflow without affecting other pages using the same parent layout or template, you need to use unique combo classes or page-specific custom code. Here's how to do it cleanly.
Hero Section page-2
).Go to Page Settings of the duplicated page.
In the Before tag Custom Code field, add inline CSS targeting a section ID or class:
Example:<style>#hide-on-this-page { display: none; }</style>
Make sure the section on that page has a unique ID or combo class like #hide-on-this-page
.
To hide a section on duplicated Webflow pages without affecting others, use a combo class or unique ID with Display: None, and avoid changing global classes or Symbols directly. This maintains layout independence across pages.