Resource icon

XF 1 Tip Add an image to node titles on the forum home page

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,120
Points
823

Reputation:

LQD submitted a new resource:

Add an image to node titles on the forum home page - Smexy!

This resource is not affiliated with XenForo Ltd.

This simple bit of CSS will add an image to the forum home page before a node title.

You need to know the node ID for each image; you can find this in the ACP or by using one of the browser inspection tools.

For each node, you will need to add CSS similar to the following to EXTRA.css:

Code:
.nodeList .node_32 .nodeTitle:before {
content: url('@imagePath/path/to/image.png');
display: inline;
vertical-align: middle;
padding-right...

Read more about this resource...
 
Top