Customizing the sidebar gives you the option of always showing the dashboard, always showing the events, or the "smart" option of showing the events page if you have new events but otherwise showing the dashboard. I wanted an option that would show new events at the top of the page and then place the dashboard underneath them so that I never had to switch back and forth among the tabs.
This seems to do it; I hope other people find it helpful. (I've read that this may not work in Safari, but I don't have a Safari browser to test it with.)
div#sidebar-inner {display: flex !important; flex-direction: column;} div#sidebar-inner-dash {display: block !important; order: 2; } div#sidebar-inner-events {display: block !important; order: 1;}
that's pretty neat! though you're right about it not quite working in safari -- the events show up below my dashboard instead of the other way around.
Thanks for the confirmation that the code doesn't work in Safari (I wish it did!). If you don't mind being a guinea pig (because I can't test it myself), try this code:
div#sidebar-inner {display: -webkit-flex !important; display: flex !important; -webkit-flex-direction: column; flex-direction: column;} div#sidebar-inner-dash {display: block !important; -webkit-order: 2; order: 2; } div#sidebar-inner-events {display: block !important; -webkit-order: 1; order: 1;}
i don't mind at all! if safari will play nice at all, it'd be nice for everyday use (or literally any time other than omen islands plot: revenge of the team ping, hah). unfortunately, this new one also puts the events below the dashboard :c
I like this a lot! Thank you for sharing it. c:
Well, poop. I'll look into it. : Glad you found it helpful!