OK I figured it out :)
I added a new section to my sytles-custom.css as follows:
** Invisible fonts for Custom Status Icons
/******************************************************************************************/
.map_icon_customfont .moreicon {
display: none;
}
.map_icon_customfont, .map_icon_customfont div, .map_icon_customfont span, td.map_icon_customfont {
font-size: 0px;
font-weight: bold;
}
.map_icon_customfont .status {
font-size: 0px;
font-weight: normal;
}
Then I referenced this CSS in my map object:
<div class="map_object map_icon_customfont <#sensor type="colorclassofstate" prefix="map_statuslarge_" id="<@objectid>">" id="<@itemid>" objectid="<@objectid>" subid="<@subid>" style="<#mapobject type="coordinates" subid="<@subid>" mode="<@editmode>">">
Add comment