Currently, I am in the process of developing a website that requires a fixed position div at the top of the page. However, I am encountering an issue where this div is covering a portion of my content. I'm unsure how to resolve this issue.
The specific div that needs to be fixed at the top is ".menutop":
.menutop {
width:100%;
background-color:white;
top:0;
position:fixed;
margin-bottom:10px;
border-bottom:1px solid black;
color: #428CB7;
}
Do I need to modify anything in the body configuration to address this problem?
Thank you!