XF 1.4 How to get a "forum ID" with a page?

Betclever

Well-known member
Hello,

I made a page where I put an Iframe but the link to this one is /streaming so there is no ID and I need it to upload a custom node icon.

Please find the cote I put under extra.css but I'm looking for a way to upload an icon cause I don't have an ID...

Code:
/* custom status icons */
.node.node_96 .forumNodeInfo .nodeIcon, .node.node_96 .categoryForumNodeInfo .nodeIcon {
    background-image: url("@imagePath/xenforo/icons/seriea.png") !important;
    background-size: cover !important;
}
.node.node_96 .forumNodeInfo.unread .nodeIcon, .node.node_96 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("@imagePath/xenforo/icons/seriea.png") !important;
    background-size: cover !important;
}
 
Thanks, good to know but I don't know why but the code I'm using for each node doesn't work for the "page node".
Shall I change something a part the ID under extra.css on the code above?
 
Top Bottom