I wanted to have the title text aligned in center and with a background so I changed the textfield layer from this
<layer name="skin_title" zorder="5" url="%SWFPATH%/plugins/textfield.swf" align="lefttop" edge="leftbottom" width="95%" height="40" autoheight="true" x="5" y="-3" enabled="false" background="false" border="false" css="text-align:left; color:#FFFFFF; font-family:Verdana; font-weight:normal; font-size:16px;font-style:italic;" textshadow="1" visible="false" />
to this
<layer name="skin_title" url="%SWFPATH%/plugins/textfield.swf" align="lefttop" edge="leftbottom" width="100%" height="32" autoheight="true" x="0" y="-1" zorder="5" enabled="false" background="true" border="false" css=" text-align:center; color:#000000; font-family:Verdana; font-weight:normal; font-size:16px;" textshadow="0" visible="false" />
Everything works fine on flash but in HTML5 both iPad and desktop the layer only loads in full 100% width on the first pano. When I load the next one it only loads with the width of the text and aligned to the left.
Hans