I'm not proficient enough to know which templates to change and exactly what code to add. Any help appreciated!
Everything you could possibly want to know about how to do it can be found at http://xenforo.com/community/resources/node-secondary-images.1512/, courtesy of our wonderful Shelley.
Thanks Tracy Perry, but it is not the solution
I'm not proficient enough to know which templates to change and exactly what code to add. Any help appreciated!
View attachment 46861
This I'm 99% sure can be done via css. I applied "new" indicators after the title that differ from one another so I assume node icons can differ also. I'm sure someone else will jump in with a solution before i do but to cut a long story short, extra css can be used here with the subforum ID used to display specific icons per sub forum. This is CyberAP's subforum add-on correct?
Basically, if you use a code inspector (firebug) or another apply your ID though if memory recalls you'll have to overide the background-color with a background (image)
View attachment 47008
I explained how I did it in the thread that you took the image from.
http://xenforo.com/community/threads/tutorial-sub-forum-grid-listing.10978/page-5#post-249602
You'll also need to do everything else that Jaxel explained as well.
body .subForumsPopup .blockLinksList .node_32 .unread .nodeTitle a:before{
background: url("@imagePath/xenforo/icons/node32-unread.png") no-repeat center transparent !important;
height: 36px;
width: 36px;}
body .subForumsPopup .blockLinksList .node_32 .nodeTitle a:before {
background: url("@imagePath/xenforo/icons/node32-read.png") no-repeat center transparent;
width: 36px;
height: 36px;}
body .subForumsPopup .blockLinksList .node_34 .unread .nodeTitle a:before{
background: url("styles/@imagePath/icons/node34-unread.png") no-repeat center transparent !important;
height: 36px;
width: 36px;}
body .subForumsPopup .blockLinksList .node_34 .nodeTitle a:before {
background: url("@imagePath/xenforo/icons/node17-read.png") no-repeat center transparent;
width: 36px;
height: 36px;}
body .subForumsPopup .blockLinksList .node_30 .unread .nodeTitle a:before{
background: url("@imagePath/xenforo/icons/node34-unread.png") no-repeat center transparent !important;
height: 36px;
width: 36px;}
body .subForumsPopup .blockLinksList .node_30 .nodeTitle a:before {
background: url("@imagePath/xenforo/icons/node30-read.png") no-repeat center transparent;
width: 36px;
height: 36px;}
We use essential cookies to make this site work, and optional cookies to enhance your experience.