Insert button before notification

How to insert a button before the notification icon like on the picture but reversed with the hamburger menu icon
No description
4 Replies
fikurimax
fikurimaxOP2y ago
I've tried with panels::topbar.start and panels::topbar.end the panels::topbar.start results the button appears before the hamburger button like on the picture and panels::topbar.end results the button appears after the profile icon
cheesegrits
cheesegrits2y ago
Sounds like it would need another render hook added. You could try PR'ing one, see if it gets accepted.
jbenavidesv
jbenavidesv2mo ago
@fikurimax @cheesegrits, i solved a similar issue by adding to my livewire component
<style>
.fi-topbar-open-sidebar-btn{
order : -1
}
</style>
<style>
.fi-topbar-open-sidebar-btn{
order : -1
}
</style>
That helped me to mantain the hamburger icon in the leftmost position of the topbar. Hope this helps!

Did you find this page helpful?