There’s just one detail that maybe you know how to fix.
The back button disappears when you scroll down (please see attached video)…is it possible to have the back button fixed/floating at the top of the screen so that it remains visible even when scrolling?
Context: the community is embedded (webview) in our mobile app.
I noticed that there’s no way of deciding where the breadcrumbs go, which would be great. For example I’m using the Category Banners and I would like the breadcrumbs to be above that.
It gets a bit lost when it’s below.
Any chance of changing this?
Thanks
I just noticed something that could be fixed (or at least having the option to toggle that on and off). I don’t think the last / needs to be there
So it would be just Home / General Discussion instead of Home / General Discussion /
EDIT:
I just used CSS to do that, but I believe it could be the default. In case someone wants that:
/* Remove separator (::after content) from the last breadcrumb item */
.breadcrumbs li:last-child::after {
content: none;
}
This is a minor tweak, but it looks better to me. Increase the margin-bottom to 1rem to give it more space to “breathe”, but it also centers it when there’s a banner (if we have to stick to that position on the page). Look at my previous image (the default 0.5rem) versus using 1rem:
Final result after all the CSS tweaks I made:
CSS:
/* breadcrumbs - remove background and increase margin-bottom */
.breadcrumbs {
background-color: transparent !important;
margin-bottom: 1rem;
}
/* breadcrumbs - hide back arrow from Home link */
.breadcrumbs__title .d-icon {
display: none;
}
/* breadcrumbs - remove separator (::after content) from the last breadcrumb item */
.breadcrumbs li:last-child::after {
content: none;
}