well its time to change that and make your firefox folders look like this:

go to:
C:\Documents and Settings\*your username*\Application Data\Mozilla\Firefox\Profiles\*profile name*\chrome
and create A: userChrome.css
enter the following:
CODE
[i].bookmark-item[container="true"][label="[b]NAME OF FOLDER[/b]"] {
list-style-image: url('file:///*[b]LOCATION OF ICON[/b]*) !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}[/i]
list-style-image: url('file:///*[b]LOCATION OF ICON[/b]*) !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}[/i]
here is an example:
Quote -
.bookmark-item[container="true"][label="Dailys"] {
list-style-image: url('file:///C:/Documents/Tools/FFI/home.png') !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}
.bookmark-item[container="true"][label="Favorites"] {
list-style-image: url('file:///C:/Documents/Tools/FFI/favorits.png') !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}
list-style-image: url('file:///C:/Documents/Tools/FFI/home.png') !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}
.bookmark-item[container="true"][label="Favorites"] {
list-style-image: url('file:///C:/Documents/Tools/FFI/favorits.png') !important;
-moz-image-region: rect(0px 16px 16px 0px) !important;
}
This will show my first 2 folders: Dailys and Favorites.. remember to repeat the code to change the icons of the folders.. its a quite easy and simple trick that I thought I might share
