I can’t figure it out. I am using phonegap on ios7. I have a pagecontainer in which I put page elements. I have a select element that uses the default ios7 favorites list element. The selection is selected with a black background, so the text cannot be read. If I remove glb_pagecontainer and the page from my css, the selection list will become transparent, as it should be. so the problem seems to be related to glb_pagecontainer combined with the page?
#glb_pagecontainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.page {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<div id="glb_pagecontainer">
<div class="page" id="pageid">
<div class="row row1" style="margin-top:50px;">
<section class="col">
<div class="input">
<select id="theid" class="inputpicker" style="text-indent: 92px;">
<option>one option</option>
</select>
</div>
</section>
</div>
</div>
</div>
source
share