this post was submitted on 25 Jun 2025
1 points (100.0% liked)

General Discussion

0 readers
1 users here now

A place to talk about whatever you want


This is a forum category containing topical discussion. You can start new discussions by mentioning this category.

founded 5 months ago
 

Strange, I don’t see a “Save” button after repositioning the cover image. Maybe it’s related to the theme?

adam-Swim-Community-06-25-2025_08_55_AM.png

you are viewing a single comment's thread
view the rest of the comments
[–] adam-c@community.nodebb.org 2 points 1 week ago (1 children)

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: Editing-adam-Swim-Community-06-25-2025_03_10_PM.png

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>

![](https://community.nodebb.org/assets/uploads//files/1750880732629-editing-adam-swim-community-06-25-2025_03_10_pm.png)