I'm having trouble keeping my table of images contained within the content area of my page. Additionally, I can't seem to get my footer to stay at the bottom of the page. Take a look at this image for reference:
body {
margin: 0px;
padding: 0px;
}
.mainwrapper {
width: 1024px;
margin: 0 auto;
}
.pagebanner {
height: 250px;
margin: 0;
}
.pagebanner img {
width: 100%;
height: 100%;
}
.main {
margin: 0;
}
.navbar {
background-color: brown;
min-height: 500px;
width: 20%;
float: left;
}
.navbar li {
list-style: none;
margin-bottom: 15px;
}
.navbar a {
color: #fff;
font-size: 20px;
}
.headersd {
width: 80%;
float: left;
padding: 0;
min-height: 500px;
}
.header {
background-color: #000;
text-align: center;
}
.header h1 {
color: #fff;
margin: 0;
}
.subheading {
background-color: #f8d631;
text-align: center;
}
.subheading h2 {
background-color: #f8d631;
margin: 0;
}
.table {
align: center;
padding-left: 50px border: 20px;
}
.footer {
background-color: darkgreen;
height: 20px;
margin-bottom: 0px;
}
<div class="mainwrapper">
<div class="pagebanner">
<img src="https://cdn-images-1.medium.com/max/1400/1*278tqw9zNPe2WCAz29Wzdw.jpeg" alt="PageBanner">
</div>
<!--PageBanner-->
<div class="main">
<div class="navbar">
<ul>
<li>
<a href="#">Information</a>
</li>
<li>
<a href="#">Home</a>
</li>
</ul>
</div>
<!--Navbar-->
<div class="headers">
<div class="header">
<h1>The Club Site</h1>
</div>
<!--Main page heading section-->
<div class="subheading">
<h2>Members Prices</h2>
</div>
<!--Sub heading section-->
</div>
</div>
<div class="content">
<div class="table">
<table>
<th>Discount Prices</th>
<tr>
<td><img src="https://imgur.com/S1JVX6K" </td>
<td><img src="https://imgur.com/uzkB81W" </td>
<td><img src="https://imgur.com/YvnOW4s" </td></tr>
<tr>
<td><img src="https://imgur.com/f2wnDXT" </td>
<td><img src="https://imgur.com/XiBYnS2" </td>
<td><img src="https://imgur.com/mGcCorr" </td></tr>
</table>
</div>
<!--Table Section-->
</div>
<!--Content section-->
<div class="footer">
<footer>wsrgferg</footer>
</div>
<!--Footer section-->
</div>
<!--Endwrapper-->