ID:863627
 
Code:
.inventory{color: yellow; font-size: 18px; vertical-align: top; text-align: right; font-style:bold}

(This is the code in my map's stylesheet)

maptext = "<SPAN CLASS=inventory>[u.stack_count]</CLASS>"


Problem description:
I am trying to apply this stylesheet to my maptext, however, it is not working. May I get some advice on how I should be doing this?

Also, does inline support mean that there is a way I could write up this CSS right inside the maptext string? If so, how would that be do-able?

Thanks
I don't know much about CSS, but shouldn't that be </span>, not </class>?
Still, the fact of the matter is that it isn't functioning.
Your closing tag isn't a valid tag. You're using a span tag, not class.

Also, you don't have to capitalize attributes in html =]

maptext = "<span class='inventory'>[u.stack_count]</span>"
Still isn't working...