Rum Runner Entertainment Active member Sep 13, 2015 #1 What would be the CSS attribute for the sub-forum node icon?
P Paul B XenForo moderator Staff member Sep 13, 2015 #2 What do you mean by sub forum? Is it the same as this https://xenforo.com/community/threads/icon-alongside-child-forum.105035/#post-983770 ? Upvote 0 Downvote
What do you mean by sub forum? Is it the same as this https://xenforo.com/community/threads/icon-alongside-child-forum.105035/#post-983770 ?
Rum Runner Entertainment Active member Sep 13, 2015 #3 No, not necessarily. When clicking on the large forum node, with the sub-forum nodes being directly underneath, there's a page that comes up: I want to change those node icons, although they are all sub-forum nodes, and I'm guessing that there is an attribute for that, which directly relates to this: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/ Upvote 0 Downvote
No, not necessarily. When clicking on the large forum node, with the sub-forum nodes being directly underneath, there's a page that comes up: I want to change those node icons, although they are all sub-forum nodes, and I'm guessing that there is an attribute for that, which directly relates to this: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/
P Paul B XenForo moderator Staff member Sep 13, 2015 #4 They are just regular node icons. You can set the images for read and unread in Style Properties -> Node Icons Upvote 0 Downvote
They are just regular node icons. You can set the images for read and unread in Style Properties -> Node Icons
Rum Runner Entertainment Active member Sep 13, 2015 #5 Brogan said: They are just regular node icons. You can set the images for read and unread in Style Properties -> Node Icons Click to expand... Yea, but wouldn't that change all the node icons? I just want to change those, in that forum. Upvote 0 Downvote
Brogan said: They are just regular node icons. You can set the images for read and unread in Style Properties -> Node Icons Click to expand... Yea, but wouldn't that change all the node icons? I just want to change those, in that forum.
P Paul B XenForo moderator Staff member Sep 13, 2015 #6 Ah, in that case you need to target the individual node ID with the CSS. See this thread: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/ Upvote 0 Downvote
Ah, in that case you need to target the individual node ID with the CSS. See this thread: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/
Rum Runner Entertainment Active member Sep 13, 2015 #7 Brogan said: Ah, in that case you need to target the individual node ID with the CSS. See this thread: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/ Click to expand... Yea, that's exactly what I did, but I tried that, but it didn't seem to work for the sub-forum for some reason. Upvote 0 Downvote
Brogan said: Ah, in that case you need to target the individual node ID with the CSS. See this thread: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/ Click to expand... Yea, that's exactly what I did, but I tried that, but it didn't seem to work for the sub-forum for some reason.
P Paul B XenForo moderator Staff member Sep 13, 2015 #8 I haven't checked whether the CSS is valid but this guide may help in identifying the exact classes to use: https://xenforo.com/community/resources/how-to.4390/ Upvote 0 Downvote
I haven't checked whether the CSS is valid but this guide may help in identifying the exact classes to use: https://xenforo.com/community/resources/how-to.4390/
Rum Runner Entertainment Active member Sep 13, 2015 #9 Brogan said: I haven't checked whether the CSS is valid but this guide may help in identifying the exact classes to use: https://xenforo.com/community/resources/how-to.4390/ Click to expand... Well I haven't changed anything within the code, so everything follows this guide: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/, otherwise, I'm guessing that there must be some additional attribute for sub-forum nodes. Upvote 0 Downvote
Brogan said: I haven't checked whether the CSS is valid but this guide may help in identifying the exact classes to use: https://xenforo.com/community/resources/how-to.4390/ Click to expand... Well I haven't changed anything within the code, so everything follows this guide: https://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/, otherwise, I'm guessing that there must be some additional attribute for sub-forum nodes.
veemon Member Dec 19, 2015 #10 I used this (as an example): Code: .node.level_2.node_92 .nodeIcon, .node.level_2 .node_92 .nodeInfo .forumNodeInfo.unread .nodeIcon { background-image: url("INSERT IMAGE LINK"); background-position: 0px 0px; } All that would need changing is what is red: node_92 & INSERT IMAGE LINK Upvote 0 Downvote
I used this (as an example): Code: .node.level_2.node_92 .nodeIcon, .node.level_2 .node_92 .nodeInfo .forumNodeInfo.unread .nodeIcon { background-image: url("INSERT IMAGE LINK"); background-position: 0px 0px; } All that would need changing is what is red: node_92 & INSERT IMAGE LINK