XF 1.1 3 questiones pls

tony78

Member
hi,
how can i have the best protect for the forum

and how can i change the icon here to Multiple icones 7.webp

and the size for this font8.webp
 
how can i have the best protect for the forum

See this guide for protecting the Admin CP:

http://xenforo.com/community/thread...d-the-install-directory-using-htaccess.13768/

This is only needed if you want to add another login in addition to your admin login.

and how can i change the icon here to Multiple icones View attachment 21938

See this thread:

http://xenforo.com/community/threads/rc-1-custom-node-status-icons-read-unread.10886/

But in 1.1 you must also set the background-position unless you are using sprites that mirror the default node icons. Here is the code from that thread with the background-position added:

Rich (BB code):
/* custom status icons */
.node .node_7 .forumNodeInfo .nodeIcon, .node .node_7 .categoryForumNodeInfo .nodeIcon {
    background-image: url("@imagePath/xenforo/widgets/forum-read-7.png");
    background-position: 0px 0px;
}
.node .node_7 .forumNodeInfo.unread .nodeIcon, .node .node_7 .categoryForumNodeInfo.unread .nodeIcon {
    background-image: url("@imagePath/xenforo/widgets/forum-unread-7.png");
    background-position: 0px 0px;
}

and the size for this fontView attachment 21936

Admin CP -> Appearance -> Style Properties -> Breadcrumb -> Breadcrumb
 
i used the code on EXTRA.css

/* custom status icons */
.node .node_7 .forumNodeInfo .nodeIcon, .node .node_7 .categoryForumNodeInfo .nodeIcon {
background-image: url("@imagePath/xenforo/widgets/forum-read-7.png");
background-position: 0px 0px;
}
.node .node_7 .forumNodeInfo.unread .nodeIcon, .node .node_7 .categoryForumNodeInfo.unread .nodeIcon {
background-image: url("@imagePath/xenforo/widgets/forum-unread-7.png");
background-position: 0px 0px;
}


so can you tell me what is right code

Thanks Brogan
 
For the link forum, add this code:

Rich (BB code):
/* custom status icons */
.node.node_7 .linkNodeInfo .nodeIcon {
background-image: url("@imagePath/xenforo/widgets/forum-read-7.png");
background-position: 0px 0px;
}

You still need to specify the node_id and image location.
 
Top Bottom