Thanks! baris I’m guessing you either have the left/right navigation collapsed, or you’re on a very large monitor. I realized the parent of the save button adjusts its width based on the viewport, so when the nav is open (on the relative small screen), the save button gets pushed off the visible area. There's an "open" class on the nav when it’s expanded, but unfortunately, that can’t be used to control this container’s width. I moved the save button to the center to fix the issue.
Please let me know if you have a better idea.
Here’s what it looks like:
Here’s the code change:
***
/node_modules/nodebb-theme-harmony/scss/modules/cover.scss 2025-06-13 09:35:35
+++ cover.scss 2025-06-25 15:21:27
@@ -56,8 +56,9 @@
.save, .indicator {
display: inline-block;
position: absolute;
- top: 1em;
- right: 2em;
+ bottom: 1em;
+ left: 50%;
+ transform: translateX(-50%);
opacity: 1;
padding: 0.5em;
font-weight: bold;
```</div>

Nice! I also noticed some additional fixes to the buttons. :+1: