Hey guys!!
I recently started experimenting with CSS. I didn’t really like the back button when using link to screen in the onboarding process.
But guess what! After learning, researching and inspecting, I know the Rich Text!
Hide back button:
<pre><span><style> [data-test="back-button"]{ display: none }
Hide edit pencil
<pre><span><style> [data-test="nav-button-Edit"]{display: none}
Hide the entire top part/header
<pre><span><style> [data-test="glide-app-bar"]{display: none}
Hide Hamburger menu icon thingamajig!
<pre><span><style> [data-test="nav-button-menu"]{display: none}
Annnd… If you remember, we still don’t have conditions for adding items, so here’s your solution:
<pre><span><style> [data-test="nav-button-Add"]{display: none}
/* Suggested: Create a visibility condition for when you don't want users to add items