Shaarli Bookmark - missing icons.

In a few versions of Shaarli there appears to be a bug which stops some of the icons appearing for your sites on the picturewall. I believe this has been fixed in later versions, but this simple workaround solved the problem for me.

From you shaarli directory, simply edit the css file

root@ubuntu:/var/www/shaarli# vi ./assets/default/scss/shaarli.scss

and add the following attributes to the b-lazy class.

.b-lazy {
         min-width: 1px;
         min-height: 1px;
        }

Some of my sites still do not get an icon, but I think that is a different problem. Anyway, worked for me.