I'm attempting to convert the RoundMaster API to use the libTokenMarkers API to easily add new token marker libraries for DMs & Game Creators to take advantage of. However, there are functions where the CSS <a> Anchor element is used to create buttons of the image of the token markers in a menu for Players to select the marker. The original approach for token marker management adopted from the TrackerJacker API was to hold the raw URLs of the token markers, which could easily be used with the background-image: url() style element within the Anchor element to set the image. This does not work with the .getHTML() method of the token object returned by the libTokenMarkers.getStatus() function. This was the original statement, with e.img being the image url for the token marker: <a style="font-size: 0px; background: url('+e.img+') center center no-repeat; width: 21px; height: 21px" href="'+command+'"><img style="text-align: center;" src="'+e.img+'"></img></a> I note there is an optional [CSS] parameter to the .getHTML() method, but I can't see any documentation for this parameter. Can this help in any way, or is it just a reference to a style sheet? Can #TheAaron or anyone else give me some tips as to how to put the token marker images in custom buttons using the Anchor element or otherwise?