I've been developing a mobile layout with a horizontal scroll.
But now I have a problem:
There is a NAV element that sticks to the bottom of the page, no problem there, but I want to achieve an effect of a "corkboard" with the accompanying "frames" on the top and on the bottom. Once again, the top one is no problem at all, but I'm having a lot of trouble trying to get the bottom one to stay at the bottom, and above the NAV bar.
It's something like this:

Basically, the red square is the current view/screen, the navbar stays fixed to the bottom and if I scroll to another section it stays at the bottom of the screen as intended, as does the top blue bar (the top frame).
How can I make the bottom blue bar to stay in the position intended/exemplified?
The HTML:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<title>Ptfolio</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/less.js" type="text/javascript"></script>
<link href='http://fonts.googleapis.com/css?family=Faster+One' rel='stylesheet' type='text/css'>
</head>
<body>
<nav>
<ul>
<li><a href="#splash">Home</a></li>
<li><a href="#next">About</a></li>
<li><a href="#circuit">Circuit</a></li>
</ul>
</nav>
<div id="wrapper">
<section id="splash">
<header>About Me</header>
<div>
Lorem ipsum just testing things
</div>
</section>
<section id="next">
<div id="frame-top">
<header>Portfolio</header>
<div id="content"> </div>
</div>
<div id="frame-bottom"> </div>
</section>
<section id="circuit">
<header>Contact</header>
<div class="main">
</div>
</section>
</div> <!-- wrapper -->
<script type="text/javascript" src="cordova-2.3.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>
and the CSS:
/* --Meyerweb */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* --Meyerweb */
html, body {
height: 100%;
overflow-x: auto;
}
#wrapper {
display: table;
width: 350%;
height: 100%;
-webkit-box-sizing: border-box;
padding-bottom: 3em;
position: relative;
}
#wrapper > section {
display: table-cell;
height: 100%;
width: 25%;
}
header {
min-height: 2em;
font-size: 2em;
}
section#splash {
background: url("../img/bg_grey.png") repeat;
}
section#splash > header {
font-family: 'Faster One', cursive;
}
section#next {
background: url("../img/cork.jpg") repeat;
z-index: 1;
padding-bottom: 3.938em;
}
#frame-top {
background: url("../img/frame.png") repeat-x;
background-position: top;
z-index: 3;
width: 100%;
padding-top: 1em;
}
#frame-bottom {
background: url("../img/frame.png") repeat-x;
height: 16px;
background-position: top;
z-index: 4;
}
#content {
height: 100%;
z-index: 2;
}
section#circuit {
background: url("../img/circuit-tile-02.png") repeat;
}
.st-scroll {
top: 0;
left: 0;
transition: all 0.6s ease-in-out;
/* Let's enforce some hardware acceleration */
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
}
nav {
bottom: 0;
position: absolute;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.3, #303030),
color-stop(0.5, #212121),
color-stop(0.7, #575657)
);
height: 3em;
width: 100%;
z-index: 99;
}
nav ul {
width: 50%;
height: 100%;
color: #FFF;
margin-right: auto;
margin-left: auto;
}
nav ul li{
width: 25%;
height: 100%;
display: inline-block;
}
I've tryed everything from margins, paddings, heigth and min-height but can't manage to achieve the intended effect. Can anyope point me what I'm doing wrong?
EDIT: A screenshot of the page at the moment on:
Chrome -

Safari -

display: table/table-cell;was causing bizarre layout issues on my end, so I switched toblock/inline-block, and reduced the CSS footprint overall... but had to do some hack-ey things to overcome a couple webkit layout quirks with inline-block. The resulting layout is identical in both Windows Chrome and Android "Browser", Firefox, Chrome, Dolphin, and Skyfire (Opera has a bug that affectsposition: fixedwhen combined withz-index) – joequincy Jan 14 at 21:32