I have got a table, on a page:
<table border="0" width="320px" height="480px" style="background-color: black;">
UPDATE:
I want to remove the search bar above… so this is all I used for the adaptation for the mobile:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title></title>
<style type="text/css">
body{
margin:0px;
padding: 0px;
}
</style>
<script>
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
</script>
</head>
I still can see one inch of the navigation bar..but I am trying to remove that one inch but cant
Thats what I wanted.. no navigation , and disable all events