Skip to content

Multiple link on one ico non Navbar

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
  • Material View Support for Stock NodeBB

    Unsolved Let's Build It
    51
    15 Votes
    51 Posts
    3k Views

    Oh yes, thatโ€™s whatโ€™s super cool, I learn something every day. Afterwards I start from so low in JS

  • Widget | CSS customization

    Solved WordPress
    53
    17 Votes
    53 Posts
    3k Views

    @Sala the only way you can achieve this is to use a robots.txt file and disallow access to those links.

  • hover link effect

    Solved Customisation
    18
    6 Votes
    18 Posts
    1k Views

    @DownPW Looking at the underlying code, class start is being added on hover by jQuery in this function

    document.querySelectorAll(".button-gradient, .button-transparent").forEach((button) => { const style = getComputedStyle(button); const lines = document.createElement("div"); lines.classList.add("lines"); const groupTop = document.createElement("div"); const groupBottom = document.createElement("div"); const svg = createSVG( button.offsetWidth, button.offsetHeight, parseInt(style.borderRadius, 10) ); groupTop.appendChild(svg); groupTop.appendChild(svg.cloneNode(true)); groupTop.appendChild(svg.cloneNode(true)); groupTop.appendChild(svg.cloneNode(true)); groupBottom.appendChild(svg.cloneNode(true)); groupBottom.appendChild(svg.cloneNode(true)); groupBottom.appendChild(svg.cloneNode(true)); groupBottom.appendChild(svg.cloneNode(true)); lines.appendChild(groupTop); lines.appendChild(groupBottom); button.appendChild(lines); button.addEventListener("pointerenter", () => { button.classList.add("start"); }); svg.addEventListener("animationend", () => { button.classList.remove("start"); }); }); })

    The CSS for start is below

    .button-gradient.start .lines svg, .button-transparent.start .lines svg { animation: stroke 0.3s linear; }

    And this is the corresponding keyframe

    @keyframes stroke { 30%, 55% { opacity: 1; } 100% { stroke-dashoffset: 5; opacity: 0; } }

    Itโ€™s using both CSS and SVG, so might not be a simple affair to replicate without the SVG files.

  • plugin open link IMgur images

    Customisation
    7
    0 Votes
    7 Posts
    534 Views

    @DownPW not sure what you mean. Can you elaborate ?

  • 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 ๐Ÿ˜‰

  • Link Text Colour.

    Solved Customisation
    5
    2 Votes
    5 Posts
    427 Views

    @phenomlab Thx again for the reply.

    Well I am sure that it will be well worth the wait. ๐Ÿ™‚ I will watch with anticipation. For now it is OK. Just small minor irritations I fell in a lot of NodeBB โ€˜defaultโ€™ things.

  • Fontawesome 5

    Unsolved Customisation
    14
    1 Votes
    14 Posts
    900 Views

    @pwsincd 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 ?

  • Bug Navbar CSS

    Solved Customisation
    3
    1 Votes
    3 Posts
    373 Views

    Not better way.

    Thanks.