Skip to content

nodebb-plugin-customize error

Solved Customisation
  • @phenomlab no the problem is still there

    @riekmedia I’ve just managed to edit a template on your site (404.tpl), saved, and re-built assets with no issues ? What are you uploading into the file ?

  • @riekmedia I’ve just managed to edit a template on your site (404.tpl), saved, and re-built assets with no issues ? What are you uploading into the file ?

    @phenomlab I’m trying to edit group / details. Just change a ccs command style there.

    But even if you don’t change anything there and simply click on save, the error occurs

  • @phenomlab I’m trying to edit group / details. Just change a ccs command style there.

    But even if you don’t change anything there and simply click on save, the error occurs

    @riekmedia said in nodebb-plugin-customize error:

    I’m trying to edit group / details. Just change a ccs command style there.

    Can you let me know which template you’re seeing this on ?

  • @riekmedia said in nodebb-plugin-customize error:

    I’m trying to edit group / details. Just change a ccs command style there.

    Can you let me know which template you’re seeing this on ?

  • @riekmedia I see what you mean - it only seems to be the one template though. I’m not surprised as this file is huge but I can’t see anywhere the setting can be adjusted unless it’s in the plugin itself.

  • @riekmedia I see what you mean - it only seems to be the one template though. I’m not surprised as this file is huge but I can’t see anywhere the setting can be adjusted unless it’s in the plugin itself.

    @phenomlab I can’t tell you that 🙂 I know the plugin so far only since yesterday through you 🙂

  • Ich habe darüber versucht das cover image von der gruppe selbst anzupassen so wie du es mit dem profil cover gemacht hast, because I couldn’t do that with css

    [MOD-EDIT]: I tried to adapt the cover image of the group itself like you did with the profile cover, because I couldn’t do that with css

    backround-size: auto;
    

    89ae447b-c9fe-4923-b3b1-4be30707ad0e-image.png

  • Ich habe darüber versucht das cover image von der gruppe selbst anzupassen so wie du es mit dem profil cover gemacht hast, because I couldn’t do that with css

    [MOD-EDIT]: I tried to adapt the cover image of the group itself like you did with the profile cover, because I couldn’t do that with css

    backround-size: auto;
    

    89ae447b-c9fe-4923-b3b1-4be30707ad0e-image.png

    @riekmedia You could use negative CSS for this ?

    .groups.list {
        margin-top: -10px;
    }
    

    Adjust -10px to the negative value you want

  • @riekmedia You could use negative CSS for this ?

    .groups.list {
        margin-top: -10px;
    }
    

    Adjust -10px to the negative value you want

    @phenomlab
    You get me wrong, it’s not just about me, it’s about the picture above. The dark gray default cover picture.

    I’m trying to fit the picture to the width, height

    We had the same problem with our own profile, so if you remember, we solved it with backround-size auto.

    I am now trying to do the same with the cover pictures of the groups. Go on a group on it with a browser then you will see it live. That shatters the whole theme 🙂

    Look at the screenshoot.

    My Profile cover fixed

    fc4f3d94-1798-4619-b551-00df2ba7009c-image.png

    Groupdetails cover not fixed

    e3019fcb-43b4-4fcd-81a2-3fdc46351d73-image.png

    And I don’t mean the group list but the group details

  • @phenomlab
    You get me wrong, it’s not just about me, it’s about the picture above. The dark gray default cover picture.

    I’m trying to fit the picture to the width, height

    We had the same problem with our own profile, so if you remember, we solved it with backround-size auto.

    I am now trying to do the same with the cover pictures of the groups. Go on a group on it with a browser then you will see it live. That shatters the whole theme 🙂

    Look at the screenshoot.

    My Profile cover fixed

    fc4f3d94-1798-4619-b551-00df2ba7009c-image.png

    Groupdetails cover not fixed

    e3019fcb-43b4-4fcd-81a2-3fdc46351d73-image.png

    And I don’t mean the group list but the group details

    @riekmedia First things first 🙂

    You may notice that in the profile page, you cannot click the dropdown menu (the button with the three dots)

    32aec8f1-6ce4-4232-936b-1cd483e4e776-image.png

    Clicking this button does nothing because the element sits behind the image meaning it is no longer clickable. The below CSS will fix that

    .btn-group.account-fab {
        z-index: 1000;
    }
    

    For the Groups issue, try this. Note that the background-image section of this will remove the actual image added by NodeBB, but will leave yours intact.

    @media (min-width: 992px) {
    .groups.details [component="groups/cover"] {
        background-size: auto;
        background-image: none !important;
    }
    }
    [component="groups/container"] {
        margin-top: 0px !important;
    }
  • @riekmedia First things first 🙂

    You may notice that in the profile page, you cannot click the dropdown menu (the button with the three dots)

    32aec8f1-6ce4-4232-936b-1cd483e4e776-image.png

    Clicking this button does nothing because the element sits behind the image meaning it is no longer clickable. The below CSS will fix that

    .btn-group.account-fab {
        z-index: 1000;
    }
    

    For the Groups issue, try this. Note that the background-image section of this will remove the actual image added by NodeBB, but will leave yours intact.

    @media (min-width: 992px) {
    .groups.details [component="groups/cover"] {
        background-size: auto;
        background-image: none !important;
    }
    }
    [component="groups/container"] {
        margin-top: 0px !important;
    }

    @phenomlab it work, thanks 🙂

  • phenomlabundefined phenomlab has marked this topic as solved on

Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

Related Topics