Lack of interest Add Miscellaneous field to Style Properties -> Node Icon elements

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Paul B

XenForo moderator
Staff member
I currently have this in EXTRA.css to replace node icons with CSS based squares:

Code:
.node .forumNodeInfo .nodeIcon,
.node .categoryForumNodeInfo .nodeIcon {
background: @primaryLight url('@imagePath/images/gradient_node_icon.png') repeat-x top !important;
border: 1px solid @primaryLight;
}

.node .forumNodeInfo.unread .nodeIcon,
.node .categoryForumNodeInfo.unread .nodeIcon {
background: @secondaryMedium url('@imagePath/images/gradient_node_icon.png') repeat-x top !important;
border: 1px solid @secondaryMedium;
}

.node .pageNodeInfo .nodeIcon {
background: @primaryDarker url('@imagePath/images/gradient_node_icon.png') repeat-x top !important;
border: 1px solid @primaryDarker;
}

.node .linkNodeInfo .nodeIcon {
background: @primaryLighterStill url('@imagePath/images/gradient_node_icon.png') repeat-x top !important;
border: 1px solid @primaryLighterStill;
}

Although I can remove the background image in Style Properties -> Node Icons -> Node Icon: Forum and continue using EXTRA.css, it would be nice if there was a Miscellaneous field for Forum, Unread Forum, Page and Link, where I could enter it instead.
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
Top Bottom