HTML label positioned fine in beta 1 and the alphas for the web client
Same label in beta 2 positioned halfway down the page. Review of the CSS styles generated by servoy, show a change:
–Vertical-align is removed from the style
–padding is added
–padding for some reason created of on top to 699px. Roughly half the vertical space of the label.
This has acutally happened on at least 3 layouts I use for the web, where the label is generated by the database. But the positioning is not. Its fixed.
–>Beta 1 generated
#header_element_5199
{
text-align: left;
vertical-align: top;
font-family: “Verdana” Verdana Arial;
font-size: 11px;
background-color: transparent;
top: 0px;
left: 0px;
width: 840px;
height: 1410px;
position: absolute;
overflow: hidden
}
–>Beta 2 generated
.header_element_2110
{
font-family: “Verdana” Verdana Arial;
font-size: 11px;
background-color: transparent;
text-align: left;
padding: 699px 0px 0px 0px;
top: 1px;
left: 1px;
width: 840px;
height: 711px;
position: absolute;
overflow: hidden
}
This is a major issue, since we are very close to actually using this solution.