Skip to content

Top Ranked Forums

Chitchat

  • 4 Votes
    4 Posts
    94 Views

    @Norrad Are you looking for anything in particular? I only ask because Sudonix uses a number of custom functions which I wrote, but all are available on GitHub and fully supported here.

  • NodeBB: Consent page

    Solved Configure
    16
    4 Votes
    16 Posts
    558 Views

    @DownPW I still do not see any issues.

  • Podcast Share NodeBB

    Solved Configure
    15
    4 Votes
    15 Posts
    482 Views

    @cagatay You could experiment with nodebb-plugin-ns-embed but I expect the x-origin tag on the remote site to prevent playback.

  • Rotating homepage icons, gifs?

    Solved Configure
    2
    3 Votes
    2 Posts
    194 Views

    @eveh It’s not a GIF, no. It’s actually a webp file so made much smaller, and uses keyframes to control the rotation on hover. You can easily make your own though 🙂

    The CSS for that is as below

    @keyframes rotate180 { from { transform: rotate(0deg); } to { transform: rotate(180deg); } } @keyframes rotate0 { from { transform: rotate(180deg); } to { transform: rotate(0deg); } }

    Your milage may vary on the CSS below, as it’s custom for Sudonix, but this is the class that is used to control the rotate

    .header .forum-logo, img.forum-logo.head { max-height: 50px; width: auto; height: 30px; margin-top: 9px; max-width: 150px; min-width: 32px; display: inline-block; animation-name: rotate180, rotate0; animation-duration: 1000ms; animation-delay: 0s, 1000ms; animation-iteration-count: 1; animation-timing-function: linear; transition: transform 1000ms ease-in-out; }
  • 7 Votes
    7 Posts
    426 Views

    @phenomlab thank you very much 🙂

  • [NodeBB] username cards

    Solved Customisation
    8
    5 Votes
    8 Posts
    826 Views

    @phenomlab

    Aha…nice to know. As always thank you for the reply and information.

  • 0 Votes
    7 Posts
    805 Views

    @RiekMedia hi. Just following up on this thread (I know it’s old) but was curious to understand if it’s still an issue or not ?

  • 10 Votes
    28 Posts
    2k Views

    @marusaky Good post. The real issue with Flarum is that even the most minor of changes requires a extension, which is crazy. With NodeBB, you can make changes on the fly very easily, and without too much effort.

    There is an element of learning when it comes to making changes to any platform, but Javascript is not difficult at all once you get used to it, and there’s also extensive support for jQuery (and hundreds of code snippets on the internet you can easily adapt and tailor to your own needs)

    For years, phpBB used to reign supreme - now it’s incredibly dated, and always did have the most confusing admin panel I’ve ever seen.