I currently hold the position of senior webpage editor at my high school, and our administration has requested that we work on creating a new website. One issue I am facing is the presence of a white border around the dropdown menus that I am implementing on the site.
h1 {
border-top: none;
border-left: none;
border-bottom: 5px groove red;
border-right: none;
color: #e60000;
font-family: century gothic;
text-align: center;
color: #FF000;
}
[...CSS styles continue...]
.navigation:hover .n5 {
-webkit-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
transition-delay: 0.4s;
}
<html>
[...HTML content continues...]
View the final result here.
I need assistance in removing the unwanted white spacing surrounding the dropdown menus. Your help would be greatly appreciated.