A reddit-ish theme for Discourse

That’s the expected functionality of the theme at the moment, I figured since reddit doesn’t have these footer buttons I’d remove them here too.

I can add them back since they’re missed, they’re hidden with one line of CSS

#topic-footer-buttons .topic-footer-main-buttons {
  display: none;
}

So if you’d like to unhide them immediately you can add this CSS to a theme component

#topic-footer-buttons .topic-footer-main-buttons {
  display: block;
}
6 Likes