Blue Squares?

Ben44

Active member
I've just updated to 2.3.2 and these blue blobs have appeared on the front page, what are they and how do I change them ??

blue.webp
 
Do you have any add-ons to change the forum icons, or anything in your extra.less template?

BTW, your link in your signature points elsewhere ;)
 
If you're coming from XF 2.1, the new method would be this in EXTRA.LESS.
CSS:
.node.node--id# .node-icon i
{
    &::before
    {
        .m-faContent(@fa-var-newspaper, 1em);
    }

    svg
    {
        display: none;
    }
}

(Replace # with the node id; replace the fa-var-newspaper with the appropriate Font Awesome icon)
 
Do you have any add-ons to change the forum icons, or anything in your extra.less template?

BTW, your link in your signature points elsewhere ;)
Oh dear, now into my 80s, I can't remember what I have and worse than that I can't remember what I done when I installed
and made changes.

Thanks for the tip about my sig link, I just retyped it and now it works, well for me it does.

If you're coming from XF 2.1, the new method would be this in EXTRA.LESS.
CSS:
.node.node--id# .node-icon i
{
    &::before
    {
        .m-faContent(@fa-var-newspaper, 1em);
    }

    svg
    {
        display: none;
    }
}

(Replace # with the node id; replace the fa-var-newspaper with the appropriate Font Awesome icon)
That's above me now frm, I would need a step by step or see if I can find someone to help me.

This being old is rubbish.
 
Last edited:
In your ACP go to Appearance >> Templates >> find the extra.less template and search and remove this code from it:
Less:
.node.node--forum.node--unread .node-icon i:before {
    display: inline-block;
    content: "";
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    width: 1.28571429em;
    mask: "\f658" no-repeat center;
    -webkit-mask: "\f658" no-repeat center;
    color: #1474b8;
}
 
Oh dear, now into my 80s, I can't remember what I have and worse than that I can't remember what I done when I installed
and made changes.
This being old is rubbish.
I can empathise with you, I'll be hitting my milestone 70 this year, and you are right on the ball with 'getting old being rubbish' lol.

@Old Nick is on the ball too, that's what I saw in the browser console, and it needs to be taken out; your blue squares will disappear :)
 
Back
Top Bottom