Footer is Overlapping an element, Quick Solution to auto push it down?

user3505146

I apologize ahead of time, I am not a skilled web designer at all, and I did do some googling before asking this, but it was complicated as most solutions require creating new divs and stuff, I was hoping there is a simple mod or line I could just add to the existing code for the footer to solve this?

Here is the site: http://ratecitident.com/ See how the black footer is overlapping the ratings box, how can I prevent this, to keep the footer at the base on any size screen? it may not show the problem on your screen, but it does on certain sizes, and on phones. This is how it looks like on my desktop screen: http://gyazo.com/112b627bb056fc0bc6eb48070939d9b7

Thanks

Hbirjand

You can simply add this little bit of code to your CSS:

div#content {
margin-bottom: 20px;
}

This is gonna give you more spacing,because you are forcing the footer to bottom of the content div to 20px.

You can always,target a specific screen using media queries,in this case you must target the iPhone screen,here is some good tutorials about the media queries.

css-tricks.com's tutorial

mozilla developer network's tutorial

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

position fixed element is overlapping into footer

From Dev

Showing an element using jQuery doesn't push my footer down in IE8

From Dev

My content won't push the footer down

From Dev

why is flex to push down footer failing

From Dev

How to set footer at bottom and push down as content increases?

From Dev

I want my content div to push my footer down?

From Dev

How to push element down when another is added

From Dev

Element OverLap: DropDown Menu not overlapping the contents, instead pushes them down

From Dev

Protractor - Drop down Element Not Visible(auto complete drop down)

From Dev

DIV overlapping sticky footer

From Dev

How to push the absolute positioned element to the bottom without overlapping

From Dev

Disqus comments are overlapping my footer

From Dev

Absolute positioned content overlapping footer

From Dev

Footer Unordered list overlapping issue

From Dev

CSS footer overlapping my content

From Dev

CSS solution to make drop-down element visible while focused

From Dev

CSS pseudo class with navigation bar push another element below down

From Dev

jquery on select drop down push data to label element

From Dev

CSS pseudo class with navigation bar push another element below down

From Dev

Push footer to the bottom of the page

From Dev

My footer moves down and then up when I click in my last list element...using slideToggle()

From Dev

How to fix footer overlapping content when resizing

From Dev

Flexbox layout keeps overlapping footer in mobile view

From Dev

sticky bootstrap footer overlapping content of page

From Dev

Stop sticky sidebar overlapping with footer waypoints

From Dev

CSS: Footer overlapping content, other glitches

From Dev

iText PDF body content Overlapping on Footer part

From Dev

Keeping fixed footer and header from overlapping

From Dev

How to fix footer overlapping content when resizing

Related Related

  1. 1

    position fixed element is overlapping into footer

  2. 2

    Showing an element using jQuery doesn't push my footer down in IE8

  3. 3

    My content won't push the footer down

  4. 4

    why is flex to push down footer failing

  5. 5

    How to set footer at bottom and push down as content increases?

  6. 6

    I want my content div to push my footer down?

  7. 7

    How to push element down when another is added

  8. 8

    Element OverLap: DropDown Menu not overlapping the contents, instead pushes them down

  9. 9

    Protractor - Drop down Element Not Visible(auto complete drop down)

  10. 10

    DIV overlapping sticky footer

  11. 11

    How to push the absolute positioned element to the bottom without overlapping

  12. 12

    Disqus comments are overlapping my footer

  13. 13

    Absolute positioned content overlapping footer

  14. 14

    Footer Unordered list overlapping issue

  15. 15

    CSS footer overlapping my content

  16. 16

    CSS solution to make drop-down element visible while focused

  17. 17

    CSS pseudo class with navigation bar push another element below down

  18. 18

    jquery on select drop down push data to label element

  19. 19

    CSS pseudo class with navigation bar push another element below down

  20. 20

    Push footer to the bottom of the page

  21. 21

    My footer moves down and then up when I click in my last list element...using slideToggle()

  22. 22

    How to fix footer overlapping content when resizing

  23. 23

    Flexbox layout keeps overlapping footer in mobile view

  24. 24

    sticky bootstrap footer overlapping content of page

  25. 25

    Stop sticky sidebar overlapping with footer waypoints

  26. 26

    CSS: Footer overlapping content, other glitches

  27. 27

    iText PDF body content Overlapping on Footer part

  28. 28

    Keeping fixed footer and header from overlapping

  29. 29

    How to fix footer overlapping content when resizing

HotTag

Archive