Viewing Footer

Footer



User: Robert P. 5 years ago
I created a shape/bar and placed it in my footer. I enabled full width of that bar but I would like to freeze that bar at the bottom of the browser no matter what. The body will be coming up from the bottom of the page and but the footer will be frozen.

For some reason there isn't any tutorials about using CSS code so I need some help.

How would I go about doing this? I appreciate the assistance.

Rob
User: Robert P. 5 years ago
I figured it out... Just use something simple:

<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color:#263990;
color: white;
text-align: center;
}
</style>

<div class="footer">
<p>Footer</p>
</div>


Post Reply
You must login or signup to post.