Skip to content

Bottom footer navbar button extend

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💗

  • 7 Votes
    8 Posts
    77 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.

  • Changing H2 color

    Solved WordPress
    5
    3 Votes
    5 Posts
    173 Views

    @Sala Just checked your site. This should work

    .bs-blog-post .title, .bs-blog-post .title a { color: #ffffff; }

    It’s worth noting the existing CSS, which uses variables like the below

    color: var(--head-color);

    These come under the :root section as below

    :root { --head-color: #212121; --stext-color: #000; --text-color: #718096; --wtext-color: #fff; --bg-color: #fff; --box-color: #fff; --border-color: #e2e8f0; --wrap-color: #eff2f7; }

    You can easily override these by using the CSS I provided at the top of this post, or you can change the underlying colours defined in the variables. However, taking this route may mean other objects are styled in the same way, which may not be the desired result.

  • chat list navbar

    Solved Customisation
    30
    3 Votes
    30 Posts
    2k Views

    No no it’s ok @phenomlab
    I just comment the 2 lines mentionned aboves 😉

  • 7 Votes
    7 Posts
    415 Views

    @phenomlab thank you very much 🙂

  • 3 Votes
    12 Posts
    970 Views

    @cagatay you’ll need to define this in the body tag (or another element if you want greater or more granular targets) - for example

    body { font-family: "Poppins"; font-size: 16px; }

    Essentially, you use the font-size CSS directive.

  • 2 Votes
    7 Posts
    395 Views

    yeah you’re right @phenomlab.
    Problem of NodeBB Version

  • Bug Navbar CSS

    Solved Customisation
    3
    1 Votes
    3 Posts
    293 Views

    Not better way.

    Thanks.

  • CSS Help on my Flarum

    Solved Customisation
    5
    2 Votes
    5 Posts
    425 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.