Can you tell me how to make the top bar totally transparent
tried this one but doesn’t apply
.cBaHTz {
background: linear-gradient(white, rgb(255 255 255));
backdrop-filter: blur(10px);
position: relative;
}
ps.
cannot share any image…sorry
app.tunewell.online
I’m on mobile right now, so pardon me if this doesn’t work, but I’m pretty sure this will hide all of the top menu.
[data-test="glide-app-bar"] >* {
Display: none;
}
1 Like
hi try this and tell me if it works
<pre><div><style>
[data-test="glide-app-bar"] :nth-child(1) {
backdrop-filter: blur(1px);
background: transparent;
-webkit-backdrop-filter: blur(1px);
}
#app-root div[opacity='1'] {
color: transparent;
}
1 Like
oh great ! Thanks !!!
It works!!!
Here’s my result
app.tunewell.online