Hey there, I have a question regarding my header setup. I currently have two headers in place:
Whenever I click the notification button, the dropdown menu seems to disrupt the layout of the header. Here is a screenshot for reference:
Below is the CSS code for the notification dropdown:
#notification_dropdown {
-webkit-box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
-moz-box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
background: white;
border: solid #888888 1px;
left: 300px;
width: 380px;
display: none;
float: left;
color: #444444;
}
Can someone please help me troubleshoot what might be going wrong here?