Skip to main content
Topic: Static Board Folder Icons (Read 1606 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Static Board Folder Icons

Hi there!

Regardless if there are no new posts on a board or not, the folder icon in that hails from the Silence theme is static. Check the image.

I would like for my folders icons to show whether or not the board has any new posts to look at. :)

Also, the folders in the key works too. No need to use the "read" version of the lighter blue folders.

Thanks in advance to find this small bug? :)
 
Best,

Auctor Lucan

Re: Static Board Folder Icons

Reply #1

Little bug in the theme.
 emanuele blames @Spuds :P
have a look in index_dark.css:
Code: [Select]
.category_boards .board_icon, .board_key:before {
background: url(../../images/_dark/board_icons.png) no-repeat;
}
should become:
Code: [Select]
.category_boards .board_icon, .board_key:before {
background-image: url(../../images/_dark/board_icons.png);
background-repeat: no-repeat;
}
Bugs creator.
Features destroyer.
Template killer.

Re: Static Board Folder Icons

Reply #2

Awesome, thanks a lot!