Posts by user34994 • 11 points
3 posts
-
0
votes1
answer141
viewsA: Phonegap - app resolution on multiple devices
Use the following in the viewport: target-densitydpi=medium-dpi"
apache-cordovaanswered user34994 11 -
0
votes1
answer202
viewsA: window.location.href does not work on Windows Phone
This will not be the best way to transpose values from page to page. I suggest you take a look at Html5 especially in window.localStorage.setItem('key', 'label') and then to take the value do…
-
0
votes2
answers52
viewsA: How to use "position:absoluted" correctly?
You’ll have to put one margin-top: 100px, which corresponds to the size of the square. https://jsfiddle.net/8ue6yzqu/ #map_canvas { position: absolute; width:100px; height:100px; margin: 0; padding:…