Thank you, Don. This is the answer I was looking for.
However, I need to check in detail how to enable this setting.
Thank you, Don. This is the answer I was looking for.
However, I need to check in detail how to enable this setting.
You can find the reduce motion in your phone accessibility settings. It’s probably turned on now, so if you turn it off then the menu outside click will work. But probably that is enabled with good reason and easier to close the menu with swipe.
I love it, Don
But it looks like there’s a problem with fkb pro theme if you want to hide the hamburger menu, like here and here:
There’s yet the hamburger icon space
Hello
Thanks for the report I’ve merged a fix for this in the FKB Pro - Social theme
Hello
That’s by design. We hide the f nav on /chat
pages and use the default chat header.
Like here on Meta:
Ok got it. Then only way would be to manually hide it via CSS?
You can hide it completely with CSS.
Mobile/CSS
.d-header-icons {
.header-dropdown-toggle {
&.chat-header-icon {
display: none;
}
}
}
Note: When you are in a channel this is the only place where you can see the chat notifications.
Would it be possible to remove the chat icon, but keeping the new message bubble indicator?
Edit: Managed myself by adding a svg
.d-header-icons {
.header-dropdown-toggle {
&.chat-header-icon a svg {
display: none;
}
}
}
Hello @don, can I add text such as homepage, menu, etc. under the icons?
On the iPhone in Safari it does not work, in the Chrome browser it does.
Okay thanks for the extra details I am in Android
When using the Horizon theme, a component on the topic list is making the top area (logo/elements area) blank on scroll.
Unfortunately I can’t repro it.
It seems it’s not too compatible with the header changes. I will check what’s happens in the Horizon.
Oh ok I think I see what’s happening here. The list-controls
is sticky in Horizon when you scroll down and the F NAV is hide the header by default at the same time. So this cause this gap you shared on your screenshot.
This little CSS snippet should work with Horizon theme.
It will stick it to the top of the page when you scroll down instead of the header height.
Mobile / CSS
body.f-nav-hidden {
.list-controls {
top: 0;
}
}
For the future, it maybe a good idea to add a setting to handle the header appearance.