0

I make a footer. but to see the footer, i need to scroll it down. I want too see the footer without scrolling the page

arun
  • 4,595
  • 5
  • 19
  • 39
Loka
  • 41
  • 5
  • your question is not clear, please explain it clearly so that we can help you – Mohamed Akram Dec 30 '19 at 13:22
  • 1
    Does this answer your question? [Fix footer to bottom of page](https://stackoverflow.com/questions/18915550/fix-footer-to-bottom-of-page) – Rwd Dec 30 '19 at 13:31

1 Answers1

3

Just look for the css-class of your footer and add

position: fixed;
bottom: 0;

to this class in one of your style sheets.

You can also directly add this in your HTML / blade-template by adding the attribute style="position:fixed;bottom:0" to the outmost container of your footer.

Corylus
  • 736
  • 5
  • 16