I'm struggling to make my navbar sticky on my website without any space above it. Can someone help me with this issue? Here is the URL to my site:
My CSS looks like this:
body {
font-size: 12px;
line-height: 22px;
font-family: Arial, Helvetica, Sans-Serif;
color: #555;
background-image:url('images/bg.png');
}
#navtopstick {
background: inherit;
height: auto;
margin-top: -10px;
position: fixed;
z-index: 10;
}
/* The rest of the CSS code goes here */
In addition to fixing the navbar issue, I would also like some guidance on how to ensure that my footer stays at the bottom of the page even if there isn't enough content to push it down. Can you provide some assistance with this as well?
Thank you in advance for your help. Looking forward to resolving these issues soon.