My css for footer
.my_footer {
    background-color:#00FFFF;
    height: 60px;
}
.my_footer p {
    padding-top:20px;
    font-size:14px;
    font-color:#191970;
}
On my first page of html, footer position is at the bottom which is normal. But when I go to the next pages, the position of the footer changes. I have tried fixed-bottom, but that is nothing works for me
My footer.html:
<footer>
    <div class=" footer navbar-fixed-bottom my_footer">
        <p class="text-center">© A&A shop pvt ltd.All rights Reserved</p>
    </div>
</footer>