Skip to main content
Topic: How about allowing to change the board icon independently ? (Read 6210 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

How about allowing to change the board icon independently ?

Currently in the images folder have only one board icon and a variant of it for showing no new posts. I would be nice to get an option to choose the default board icon. If untouched, the board will have a default icon. Just my suggestion. :)

Re: How about allowing to change the board icon independently ?

Reply #1

Changing the board icons is pretty easy if you are comfortable with changing the CSS. 

TE recently wrote a nice tutorial on how to change the look in a few simple steps http://www.elkarte.net/community/index.php?topic=966.0

Re: How about allowing to change the board icon independently ?

Reply #2

yep, as Spuds already said: it's easy with just a few CSS declarations:

Just hide the old ones (on, on2 and off status) for a specific board:

Code: [Select]
#board_1 .off_board, #board_1 .on_board, #board_1 .on2_board{
 background: none;
}

Then add your favorite new ones:
Code: [Select]
#board_1  .off_board:before {
 font-family: "FontAwesome";
 content: '\f17b';
 position: relative;
 top: 5px;
 font-size: 2.7em;
 color: #aaa;
}
#board_1  .on_board:before {
 font-family: "FontAwesome";
 content: '\f17b';
 position: relative;
 top: 5px;
 font-size: 2.7em;
 color: #66CC33;
}
#board_1  .on2_board:before {
 font-family: "FontAwesome";
 content: '\f17b';
 position: relative;
 top: 5px;
 font-size: 2.7em;
 color: #888;
}

Re: How about allowing to change the board icon independently ?

Reply #3

Thanks for the reply guys. I am always worried when playing with the template or css files (even though I take backup). May be that feature can fit in a mod for ElkArte  O:-)

Re: How about allowing to change the board icon independently ?

Reply #4

Yep, a mod using css was in my mind, not enough time!! :'( lol
Bugs creator.
Features destroyer.
Template killer.

Re: How about allowing to change the board icon independently ?

Reply #5

ElkArte is still in beta phase. So we can always keep it for a stable version :)

Re: How about allowing to change the board icon independently ?

Reply #6

Well, the tools are already there, just hook the two actions (boardindex and messageindex) and output the required css... for the presentation, as usual the most annoying part is create the admin UI (and for that I'd need to fix #1113...).
Bugs creator.
Features destroyer.
Template killer.