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

top 7 comments
sorted by: hot top controversial new old
[–] adam-c@community.nodebb.org 2 points 2 weeks 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)
[–] adam-c@community.nodebb.org 1 points 2 weeks ago

I’m using a customized Harmony theme, but I haven’t made any changes to the profile template. I’m on Chrome as well. Where is the “Save” button supposed to be? It’s not the same one used to save profile changes (see screenshot below), right? That one doesn’t work for me either. Here is the site in case you want to test it out: https://community.swimstandards.com/ Thanks!

image.png

[–] baris@community.nodebb.org 1 points 2 weeks ago

Yeah my sidebars were collapsed, I will take a look at what happens when they are expanded.

[–] baris@community.nodebb.org 1 points 2 weeks ago* (last edited 2 weeks ago)

When you click the arrows to move a blue save button appears on top of the cover picture. image.png

[–] baris@community.nodebb.org 1 points 2 weeks ago

Which browser? It is working on harmony theme with chrome on this forum for me.

[–] adam-c@community.nodebb.org 1 points 2 weeks ago

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