mark3121

Registered
Using the evolve style, has the code been taken out for the node icons?

I wanted to add my old ones in to the left of the text but they dont show up, They are more to signify what each forum is about rather than being read/unread.

I tried using this code off the forums

Code:
.node--forum.node--id18.node--read .node-icon i:before{content: url(./styles/custom/icons/mod.png);}

.node--forum.node--id18.node--unread .node-icon i:before{content: url(./styles/custom/icons/mod.png);}

Thanks
 
You'll need to add this into extra.less first:

Code:
.XenBase .block--category .block-container .node .node-icon {
    display: table-cell;
}
.XenBase .block--category .block-container .node .node-body {
    padding-left: 0;
}

We hide them using CSS. I can turn this into a simple option for a new release.
 
Simple termplate edit, open template: quick_reply_macros

FInd:

Code:
 <div class="message-editorWrapper">


Ad above:

Code:
                <xf:if is="$__globals.forum.node_id == 142">
                    <div class="notices notices--block">
                        <div class="notice js-notice notice--primary">
                            <div class="notice-content">
                                This is a public support forum, please do not post confidential information here.
                            </div>
                        </div>
                    </div>
                </xf:if>

142 being the node you want to target.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back