This is not well documented in the file ssmItems.js it says:
Code:
barText="SIDE MENU"; // <IMG> tag supported. Put exact html for an image to show.
What it means is that you must use IMG not img:
Code:
barText="<IMG src='some.gif'>"; // <IMG> tag supported. Put exact html for an image to show.
or:
Code:
barText='<IMG src="some.gif">'; // <IMG> tag supported. Put exact html for an image to show.
The other important point being that different type quotes need to be used within the IMG tag than are used to delimit it as a string variable.
Bookmarks