sonnystupid
New Coder
here's the navbar's original home not going away, the dark brown bar is what i need help removing
So i'm trying to get a navbar to stick out over all the properties on a website i'm using, but for some reason I'm stuck on how to fix it since it's not working.
here's the code i have so far:
CSS:
background: #5b3914 url(images/menu/menugradient.png) repeat-x;
position: fixed;
top: 0;
z-index: 9999;
}
.navbar a {
color:#dfc79d;
}
.dropdown .dropbtn {
color:#dfc79d;
}
.dropdown-content a {
color:#000;
position: sticky;
z-index: 9999;
display: block;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #b67942;
}
.navbar {
background: #01c7fc url(images/menu/menugradient.png) repeat-x;
}
.header {
padding: 10px 16px;
background: #555;
color: #f1f1f1;
}
.content {
padding: 16px;
}
.sticky {
position: fixed;
top: 0;
width: 100%
}
.sticky + .content {
padding-top: 102px;
}
I'm also stuck on how to get the remaining navbar set in place by the code to go away, that image is the first one attached up top, my apologies for the mess, i have no idea how to use this forum 🥲
Last edited by a moderator: