Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
219 views
in Themes by

Hello to everyone. I'm having a problem with the footer. Footer, rose with content. I want to fix it so it remains under the screen. Is it possible?

Q2A version: 1.8.5, snowflat themes

1 Answer

+3 votes
by

Getting something aligned at the bottom of the screen is always a pain in the rear with CSS. Try putting something like this in the stylesheet of your theme:

html, body {
  height: 100%;
  text-align: center;
}
.qa-body-wrapper {
  display: inline-block;
  min-height: 100%;
}
.qa-footer {
  position: fixed;

  box-sizing: border-box;
  bottom: 0;
  left: 0;
  width: 100%;
}

Further adjustments may be required.

...