Top Navigation conditional rendering noob question

Hello!
New in weweb, super exited to find a product that works so intuitively and efficient. Bravo to the team.

Question: top navigation has two components (Mobile menu & Menu) that have the little crossed eye icon which indicates Conditional rendering/hiding (correct?) - looking at the right bottom of the screen where conditional rendering is, I cannot see anything indicating that this is where the feature is set. Where can I see how it set up so I can understand the mechanics behind?
Screenshot attached.

Thank you!

The eye icon indicates Conditional Rendering (bottom right of your image) OR when the CSS display property is being used to conditionally display the element.

It is explained in detail in this video:

With conditional rendering to off/false the element will be hidden and will not show in the DOM
With the CSS display property set to none/false the element will be hidden but still visible in the DOM

2 Likes

Got it! Thank you @Miguel !

1 Like