Footer floating over body
-
I am having an issue with the footer of a website I am working on.
The footer seems to be floating over the body of the website. Take a look here: https://sbbl.helixhouse.co/
After locating the css file I found the code looking like this:
#footer {position: relative;width: 996px;height: 29px;margin: 0 auto 27px auto;clear: both;}#footer ul {width: 660px;height: 29px;display: block;background: #221E1F;float: right;}#footer ul li {position:relative;list-style: none;display: inline;height: 29px;padding: 0 4px;}#footer ul li a {float:left;color: #CCC;padding: 6px 12px 0 12px;height: 23px;display: block;text-decoration: none;font-weight: bold;font-size: 10px;text-transform: uppercase;}#footer ul li a:hover
If I change the position from position: relative to position: absolute;, bottom 0px; would this fix my issue?
Thanks for any info!
- The topic ‘Footer floating over body’ is closed to new replies.