Skip to content

answers appearance css code request

Solved Customisation

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
  • how to hide "moved" badge with CSS?

    Solved Customisation
    12
    3 Votes
    12 Posts
    524 Views

    @crazycells ah, I see. That makes sense.

  • CSS codes to prevent votes to disappear

    Solved Customisation
    3
    1 Votes
    3 Posts
    287 Views

    @phenomlab yes, it is šŸ™‚ thanks a lotā€¦

  • navigation menu panel on mobile

    Solved Customisation
    8
    7 Votes
    8 Posts
    478 Views

    @crazycells hmm. Thatā€™s odd. I havenā€™t made any changes from recollection but I could be wrong. Iā€™ll need to check.

    EDIT - very strange. I honestly donā€™t recall adding the below CSS block to alter the bottom bar, but youā€™re rightā€¦

    .bottombar-nav { padding: 0px !important; }

    Iā€™ve removed this so it reflects stock Harmony.

  • The theme came with space on left side

    Solved WordPress
    7
    3 Votes
    7 Posts
    575 Views

    @phenomlab yes itā€™s a different theme. The other one was not offering much on editable sidebar. It was like flarum hahah

  • Interesting Widget code, but can't fetch API

    Solved Customisation
    26
    2 Votes
    26 Posts
    2k Views

    @Panda said in Interesting Widget code, but canā€™t fetch API:

    How did you drop that widget into the post there?
    I hadnt seen this BSgenerator anywhere on sudonix site, do you use it somewhere already?

    Yes, here

    https://sudonix.org/topic/414/corporate-bullshit-generator?_=1687774393044

    Itā€™s not a ā€œpostā€ or ā€œtopicā€ in the common sense. It is actually a page in itā€™s own right and leverages nodebb-plugin-custom-pages. This in turn creates a new ā€œrouteā€ which behaves like a page, meaning it is then exposed for widgets.

    @Panda said in Interesting Widget code, but canā€™t fetch API:

    Also can you explain more what you mean by calling the code externally. In my API call example, how would I go about doing that?

    By this, I mean create all the required code in an external JS file that is reachable by the NodeBB instance - so, in ā€œpublicā€ for example - or in my case /public/js. The widget then ā€œcallsā€ that file and because it runs outside of the scope of NodeBB, you just need to return the values to the widget.

    Hope this makes sense?

  • 1 Votes
    2 Posts
    254 Views

    Closing this in favour of https://sudonix.com/topic/357/post-style-view/28

  • [NODEBB] Scroll Button

    Solved Customisation
    7
    0 Votes
    7 Posts
    878 Views

    @downpw ooops. Forgot that. Thanks for adding.

  • CSS Help on my Flarum

    Solved Customisation
    5
    2 Votes
    5 Posts
    584 Views

    @mike-jones Yes, youā€™ll typically see this type of behaviour if there is another style that has higher priority in the sense that yours will be overridden. Using !important will override the higher preference, but should be used sparingly rather than everywhere.