How to create a sticky footer that works with mobile and desktop?
I have looked through many different posts and there does not seem to be a good, working solution. I would like my footer to be at the bottom of the page whether the website is being viewed on a monitor from a desktop or an iPhone in Safari.
Current css code:
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px;
background-color: #f5f5f5;
}
HTML code:
<footer class="footer">
<div class="container">
<span class="text-muted">text</span>
</div>
</footer>
The footer is currently at the bottom of the page on desktop and in the middle of the page on mobile Safari.
css mobile-safari sticky-footer
add a comment |
I have looked through many different posts and there does not seem to be a good, working solution. I would like my footer to be at the bottom of the page whether the website is being viewed on a monitor from a desktop or an iPhone in Safari.
Current css code:
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px;
background-color: #f5f5f5;
}
HTML code:
<footer class="footer">
<div class="container">
<span class="text-muted">text</span>
</div>
</footer>
The footer is currently at the bottom of the page on desktop and in the middle of the page on mobile Safari.
css mobile-safari sticky-footer
add a comment |
I have looked through many different posts and there does not seem to be a good, working solution. I would like my footer to be at the bottom of the page whether the website is being viewed on a monitor from a desktop or an iPhone in Safari.
Current css code:
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px;
background-color: #f5f5f5;
}
HTML code:
<footer class="footer">
<div class="container">
<span class="text-muted">text</span>
</div>
</footer>
The footer is currently at the bottom of the page on desktop and in the middle of the page on mobile Safari.
css mobile-safari sticky-footer
I have looked through many different posts and there does not seem to be a good, working solution. I would like my footer to be at the bottom of the page whether the website is being viewed on a monitor from a desktop or an iPhone in Safari.
Current css code:
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px;
background-color: #f5f5f5;
}
HTML code:
<footer class="footer">
<div class="container">
<span class="text-muted">text</span>
</div>
</footer>
The footer is currently at the bottom of the page on desktop and in the middle of the page on mobile Safari.
css mobile-safari sticky-footer
css mobile-safari sticky-footer
asked Nov 14 '18 at 0:41
jh95jh95
786
786
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The reason why is because it's positioning it absolute based on the height of the window, not your content.
What you need to do is add a media query for mobile. Something like:
@media screen and (max-width: 1024px){
body{
margin-bottom: 0;
}
.footer {
position: relative;
}
}
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291547%2fhow-to-create-a-sticky-footer-that-works-with-mobile-and-desktop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The reason why is because it's positioning it absolute based on the height of the window, not your content.
What you need to do is add a media query for mobile. Something like:
@media screen and (max-width: 1024px){
body{
margin-bottom: 0;
}
.footer {
position: relative;
}
}
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
add a comment |
The reason why is because it's positioning it absolute based on the height of the window, not your content.
What you need to do is add a media query for mobile. Something like:
@media screen and (max-width: 1024px){
body{
margin-bottom: 0;
}
.footer {
position: relative;
}
}
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
add a comment |
The reason why is because it's positioning it absolute based on the height of the window, not your content.
What you need to do is add a media query for mobile. Something like:
@media screen and (max-width: 1024px){
body{
margin-bottom: 0;
}
.footer {
position: relative;
}
}
The reason why is because it's positioning it absolute based on the height of the window, not your content.
What you need to do is add a media query for mobile. Something like:
@media screen and (max-width: 1024px){
body{
margin-bottom: 0;
}
.footer {
position: relative;
}
}
answered Nov 14 '18 at 1:05
EricEric
1866
1866
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
add a comment |
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
Works great! Thanks!
– jh95
Nov 14 '18 at 1:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291547%2fhow-to-create-a-sticky-footer-that-works-with-mobile-and-desktop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown