Tags before post list
Using bear is great, but there is one thing that bothers me and it's that the tags show after the post list. I don't like that you have to scroll all the way down to find them.
Finally some days ago I fixed this, I wasn't sure I could do it just with CSS, but I saw other blog that did that and wanted to try it out. Actually, it wasn't that difficult.
I'm sharing the code in case someone wants to change it too ;)
.blog main{
display:flex;
flex-direction:column
}
ul.blog-posts {
order:2; /*You only need to add this extra line*/
}
They're different ways to do this, but I found this one pretty simple and easy. Hope it helps!
Thanks for reading :)