Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
.u-bottomFixer {
position: fixed;
right: 0;
left: 0;
margin: 0 auto;
width: 100%;
max-width: 500px;
}
.u-bottomFixer {
position: fixed;
right: 0;
}
I fixed it but I don't know if I did it right. Because it looks different on every screen.Checking your site, it looks like you got it sorted. Correct?
.u-bottomFixer {
position: fixed;
left: 50%;
margin-left: -350px;
}
@media screen and (max-width: 768px) {
.u-bottomFixer {
position: fixed;
left: 50%;
margin-left: -150px;
}
}
.XenBase .notice.notice--cookie {
background: #f0f0f0;
max-width: 50rem;
box-shadow: 0 .625em 1.875em rgba(0, 0, 2, 0.3);
margin: 15px;
border: 1px solid #d6d6d6;
padding: 0.1rem;
border-radius: 5px;
}
It is immediately obvious that I am a beginner. Thank you, you solved all my problems.I'd remove your CSS and try this out:
Code:.u-bottomFixer { position: fixed; right: 0; left: 0; margin: 0 auto; width: 100%; max-width: 500px; }
It needs a max-width on there for this to work. You can adjust to your liking.