Fixed navigation bar not overlapping some parts of my website

Daniel

I'm trying to make a resume/portofolio type of website. The only problem that I have is that my fixed navigation bar does not overlap some content of my website (an image and a some progress bars) when I scroll down.

Here's my CSS code:

body {
 padding-top: 70px;
}

#nav {
 list-style-type: none;
 margin: 0;
 padding: 0;
 overflow: hidden;
 background-color: #333;
 position: fixed;
 top: 0;
 width: 100%;

}

#nav li {
 float: left;
}

#nav li a {
 display: block;
 color: white;
 text-align: center;
 padding: 14px 16px;
 text-decoration: none;
 opacity:1;
}

#nav li a:hover:not(.active) {
 background-color: #111;
}

.active {
  background-color: #007ed8;
}

#content{
 margin-top:100px;
 padding:20px;
}

img{
 width:290px;
 height:290px;
}

.margin{
  margin-top:100px;
}

.margin_bar{
  margin-top:6px;
}

a:hover{
 text-decoration:none;
}

Here's a jsfiddle and thanks for your help! https://jsfiddle.net/6wzr6rtc/

VXp

Just add the z-index property with some high enough value to the #nav just to be sure that it always stays on top of everything else, e.g.:

#nav {
  z-index: 999999;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Overlapping Image in Navigation Bar

From Dev

Navigation bar overlapping status bar

From Dev

Fixed CSS Navigation Bar

From Dev

Navigation bar fixed and absolute

From Dev

position:fixed navigation header overlapping browser scroll bar when using overflow-x

From Java

I need assistance in updating my footer to be bottom fixed without overlapping my left hand nav bar

From Dev

Navigation bar overlapping content text

From Dev

Navigation bar fixed after scroll?

From Dev

Fixed and Centered navigation bar, with html

From Dev

Fixed navigation bar overlap issue

From Dev

Fixed navigation bar overlap issue

From Dev

JQuery for fixed position of navigation bar

From Dev

Keep Fixed Menu-bar from overlapping

From Dev

My fixed vertical navigation bar is pushing my button down? How to fix it?

From Dev

Some parts of my code are not executed

From Dev

How can i get rid of the open space between the topside of my website and my navigation bar (bootstrap)

From Dev

How do I keep my navigation bar fixed on top while scrolling?

From Dev

Converting a default navigation bar into a sticky/fixed navigation bar?

From Dev

Navigation bar faulty with some browsers

From Dev

Links in Top-Fixed Navigation Bar Not Responding

From Dev

Fixed navigation bar for tablet and mobile issue

From Dev

Snapping a div to a fixed navigation bar on scroll

From Dev

Navigation bar follows scroll when fixed

From Dev

Margin not working with fixed position navigation bar

From Dev

Fixed Navigation Bar using Twitter Bootstrap 3

From Dev

How to create a fixed navigation bar iOS Swift

From Dev

Navigation bar follows scroll when fixed

From Dev

Fixed navigation bar would not work even using position: fixed in css

From Dev

Logo 'sticking' to my navigation bar

Related Related

  1. 1

    Overlapping Image in Navigation Bar

  2. 2

    Navigation bar overlapping status bar

  3. 3

    Fixed CSS Navigation Bar

  4. 4

    Navigation bar fixed and absolute

  5. 5

    position:fixed navigation header overlapping browser scroll bar when using overflow-x

  6. 6

    I need assistance in updating my footer to be bottom fixed without overlapping my left hand nav bar

  7. 7

    Navigation bar overlapping content text

  8. 8

    Navigation bar fixed after scroll?

  9. 9

    Fixed and Centered navigation bar, with html

  10. 10

    Fixed navigation bar overlap issue

  11. 11

    Fixed navigation bar overlap issue

  12. 12

    JQuery for fixed position of navigation bar

  13. 13

    Keep Fixed Menu-bar from overlapping

  14. 14

    My fixed vertical navigation bar is pushing my button down? How to fix it?

  15. 15

    Some parts of my code are not executed

  16. 16

    How can i get rid of the open space between the topside of my website and my navigation bar (bootstrap)

  17. 17

    How do I keep my navigation bar fixed on top while scrolling?

  18. 18

    Converting a default navigation bar into a sticky/fixed navigation bar?

  19. 19

    Navigation bar faulty with some browsers

  20. 20

    Links in Top-Fixed Navigation Bar Not Responding

  21. 21

    Fixed navigation bar for tablet and mobile issue

  22. 22

    Snapping a div to a fixed navigation bar on scroll

  23. 23

    Navigation bar follows scroll when fixed

  24. 24

    Margin not working with fixed position navigation bar

  25. 25

    Fixed Navigation Bar using Twitter Bootstrap 3

  26. 26

    How to create a fixed navigation bar iOS Swift

  27. 27

    Navigation bar follows scroll when fixed

  28. 28

    Fixed navigation bar would not work even using position: fixed in css

  29. 29

    Logo 'sticking' to my navigation bar

HotTag

Archive