I created three main divs, named header
, main-container
, and footer
. Below is the CSS styling for these divs:
#main_container
{
width:950px;
margin:0 auto;
}
#header
{
background:#f4f8f9;
}
#footer
{
clear:both;
background:#355e95;
height:40px;
color:#fff;
font-size:13px;
font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
text-align:center;
padding-top:10px;
padding-bottom:10px;
}
The issue arises when floating elements are introduced on subsequent pages, causing the footer to move above the main-container
. Even after clearing the float before the footer
div, this problem persists. See below:
<div class="clr"></div>
<div id="footer">
©2010 Sri Sai Group
<div class="fbtm">
Powered, Maintained and Designed By <a href="http://7sisters.in" target="_blank">7sisters.in</a>
</div>
</div>
Adding overflow:auto;
seems to fix the layout issues.
Below is the full HTML code snippet from one of my pages:
<body>
<div id="header">
<div class="htop">
<div class="phn">Ph +0361-26699811</div>
<div class="email">Email <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="72010702021d00063245011b01061700015c1b1c">[email protected]</a></div>
</div>
</div>
<div id="main_container">
<div id="menu_wrapper">
<div class="menu_outer">
<div class="logo">
<img src="css/images/logo.png" alt="Sri sai" />
</div>
<div class="menu">
<div id="site_title">
<h1>SRI SAI GROUP</h1>
</div>
<div id='cssmenu'>
<ul>
<li><a href='#'><span>Home</span></a></li>
<li class='has-sub '><a href='#'><span>About</span></a>
<ul>
<li class='has-sub '><a href='#'><span>Overview</span></a>
</li>
<li class='has-sub '><a href='#'><span>Board Members</span></a>
</li>
<li class='has-sub '><a href='#'><span>Our Family</span></a>
</li>
<li class='has-sub '><a href='#'><span>Gratitude</span></a>
</li>
</ul>
</li>
<li class='has-sub '><a href='#'><span>Business</span></a>
<ul>
<li class='has-sub '><a href='#'><span>Food and Beverages</span></a>
</li>
<li class='has-sub '><a href='#'><span>Media and Entertaintment</span></a>
</li>
<li class='has-sub '><a href='#'><span>Information Technology</span></a>
</li>
<li class='has-sub '><a href='#'><span>Consumer Servies</span></a>
</li>
</ul>
</li>
<li><a href='#'><span>Contact</span></a></li>
</ul>
</div>
</div>
</div>
<div id="web-design">
<img src="css/images/banner_ssg.png" />
Our Website Development team builds websites using latest technologies; the sites we build are robust, secure and reliable. Our process guarantees fast capturing of your idea and quick Website Development at minimum possible cost.
During the Website Development process we keep provisions for future growth of your business. The sites we build are SEO compatible. You will get professional developers that are personally dedicated to you and ready to meet your business objectives.
All our projects come with the needed documentation and support.
</div>
<div id="contact_form">
<form method="post" id="customForm" action="">
// form inputs go here...
</form>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/validation.js"></script>
</div>
<div class="clr"></div>
<div id="footer">
©2010 Sri Sai Group
<div class="fbtm">
Powered, Maintained and Designed By <a href="http://7sisters.in" target="_blank">7sisters.in</a>
</div>
</div>
</body>