device specific css?
-
I am trying to resolve a device specific (iphone) issue with the toolbar, and every thing I have tried in cordova will not fix it, so I turn to the idea of detecting the device and changing the height via css. Is this possible? Where is the css for this?
-
In trying to solve my cordova problem, I turned to the build files that the cordova wrapper uses to build the app, and discovered quite by accident that including
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
in the index.html file fixed my problems! It would seem that without this reference, some of my cordova specific plugins (notably cordova-plugin-statusbar) were being ignored! Hope this helps someone else.