HTML- footer overlaps with HTML content [closed]

-1

The footer I have overlaps with the contents of the body. I already put the footer inside the body and out of it and I still have this problem. please see the image: link , as I have this form the buttons will stop working because the footer is superimposed.

footer code:

  <footer align:center>
    <p> &#174; Galaxy Books Store</p>
</footer>
    
asked by anonymous 01.05.2017 / 20:25

1 answer

0

A bit strange this "align: center" outside of the "style" attribute. But regardless of that, the most likely is that your footer has an "absolute" or "fixed" position. As you just put a picture you can not know exactly what the problem is, but you could try generically with:

footer{
    display: block;
    position: relative;
    width: 100%;
    clear: both;
}

This in css, of course ... If you want inline styles it would be:

<footer style="display: block; position: relative; width: 100%; clear: both;">
    <p> &#174; Galaxy Books Store</p>
</footer>
    
01.05.2017 / 20:48