Is it possible to add a small icon at the bottom of the footer that scrolls up or down as I scroll, instead of remaining fixed?
I'm unsure if the issue lies in setting the image as sticky on scroll or if it's a CSS error.
I attempted to set the image as fixed in the CSS section but all it did was move the image to the left while still allowing it to scroll up and down.
#footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100px;
}
.page-footer {
background: #e85259;
}
.blurb p {
color: #faf9f9;
font-weight: 100;
}
/* Other styles omitted for brevity */