Link to home
Start Free TrialLog in
Avatar of Andy_Fang
Andy_Fang

asked on

Footer not Appearing?

For some reason my site has a footer that isn't appearing. If you click "Sign In" on the top, you can see the footer (darkened), but for some reason my footer isn't displaying elsewise.
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

What is the url?
post your piece of code or link please...
Avatar of Andy_Fang
Andy_Fang

ASKER

ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The HTML validator reports multiple unclosed elements. One of these is inside your LoginHeader element so that element, which is hidden, is encompassing your footer. I've indented your code below so you can see the flow. I'll let you determine where the other unclosed elements are.
<!-- Modal -->
<div class="modal fade" id="LoginHeader" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
	<div class="modal-dialog">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
				<h4 class="modal-title" align="center">Login to DiceHub</h4>
			</div>
			<div class="modal-body">
				<form class="form-horizontal" role="form">
					<div class="form-group">
						<label for="inputEmail1" class="col-lg-2 control-label">Username</label>
						<div class="col-lg-10">
							<input type="email" class="form-control" id="Email" placeholder="Email or Username">
						</div>
					</div>
					<div class="form-group">
						<label for="inputPassword1" class="col-lg-2 control-label">Password</label>
						<div class="col-lg-10">
							<input type="password" class="form-control" id="inputPassword1" placeholder="Password">
						</div>
					</div>
					<div class="form-group">
						<div class="col-lg-offset-2 col-lg-10">
							<div class="checkbox">
								<label>
									<input type="checkbox"> Remember me next time
								</label>
							</div>
						</div>
					</div>
					<button type="button" class="btn btn-primary" align="center">Login</button>
				</form>
			</div>
		</div>
		<!-- modal-content -->

		<div class="push">
		</div>
	</div>

	<div id="footer_wrapper">

Open in new window