<html>
<style>
.menu {
overflow-x: hidden;
position: relative;
left: 0;
}
.menu-open {
left: 231px;
}
.menu-open .menu-side {
left: 0;
}
.menu-side, .menu {
-webkit-transition: left 0.2s ease;
-moz-transition: left 0.2s ease;
transition: left 0.2s ease;
font-family: fantasy;
}
.menu-side {
background-color: #333;
border-right: 1px solid #000;
color: #fff;
position: fixed;
top: 0;
left: -231px;
width: 210px;
height: 100%;
padding: 10px;
}
.menu-side img {
width: 100%;
padding: 3px;
}
.menu-toggle {
color: black;
}
.menu-toggle img {
width: 60px;
}
ul li {
list-style: none;
margin-bottom: 10%;
}
ul li a {
text-decoration: none;
color: white;
font-size: 25px;
}
ul li a:hover {
color: green;
}
.wrapper{
width: 1068px;
height: 100%;
padding: 0px;
position: relative;
}
.left-side {
left: 0px;
position: absolute;
width: 43%;
padding: 3%;
}
.right-side {
right: 5%;
position: absolute;
width: 43%;
padding: 3%;
}
.ongoing-post {
overflow:hidden;
margin-bottom:10px;
background:gray;
box-shadow:inset -1px -1px 2px rgba(0,0,0,0.2);
-moz-box-shadow:inset -1px -1px 2px rgba(0,0,0,0.2);
-webkit-box-shadow:inset -1px -1px 2px rgba(0,0,0,0.2);
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-bottomleft:4px;
border-bottom-right-radius:4px;
border-bottom-left-radius:4px;
padding:7px;
-webkit-transition:0.35s;
-moz-transition:0.35s;
-ms-transition:0.35s;
-o-transition:0.35s;
height: 130px;
}
.ongoing-post:hover {
background:#F9F9F9;
}
.ongoing-image {
float:left;
margin-right:5px;
}
.ongoing-data {
float:left;
width:78%;
}
.ongoing-data h2,.ongoing-data h2 a {
margin:0 0 7px 0;
text-decoration:none;
padding:0;
font-size:13.3px;
width:100%;
}
.ongoing-data h2 a:hover {
color:#FFC2A3;
}
.ongoing-release {
font-size:12px;
width:100%;
margin-bottom:7px;
}
.ongoing-release a {
color:#4B5056;
width:100%;
}
.ongoing-release a:hover {
color:#818489;
}
.ongoing-type,.ongoing-type a {
color:#98CC54;
font-size:12px;
width:100%;
}
.ongoing-type a:hover {
color:#B7DB87;
}
</style>
<head>
</head>
<body class="menu menu-open">
<header>
<a href="#" class="menu-toggle"><img src="./images/toggle-off.png" style="width: 30px"></a>
<nav class="menu-side">
<img src="./images/VR1.png" style="width: 50px">
<ul>
<li><a href="#">Rom List</a></li>
<li><a href="#">Submit Roms</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">FAQ/How to Use</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<div class="left-side">
<a href="#"><div class="ongoing-post">
<div class="ongoing-data">
</div>
</div></a>
<a href="#"><div class="ongoing-post">
<div class="ongoing-data">
</div>
</div></a>
</div>
<div class="right-side">
<a href="#"><div class="ongoing-post">
<div class="ongoing-data">
</div>
</div></a>
<a href="#"><div class="ongoing-post">
<div class="ongoing-data">
</div>
</div></a>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
(function() {
var body = $('body');
$('.menu-toggle').bind('click', function() {
body.toggleClass('menu-open');
return false;
})
})();
</script>
</body>
</html>
Feel free to utilize this solution. It might be beneficial for your requirements. I suggest looking into bootstrap as well, as it can greatly simplify our tasks.