Link to the website in question:
website
The navbar links collapse into a hamburger menu dropdown on smaller screens, and I have added a CSS property for the top border
.navbar { border-top: 3px solid rgba(55,175,75,1.00); }
. However, when the screen size is reduced, the hamburger menu button seems to be overlapping the green border at the top of the navbar!
I've tried various solutions, such as adjusting margins to lower the button (which also results in overlap of the bottom border), removing background-color, or making it transparent using rgba(0,0,0,0.00)
, but so far nothing has worked...
If you have any suggestions or ideas on how to fix this issue, they would be greatly appreciated.
Here's a visual of the problem:
https://i.sstatic.net/LGuac.png
The green top border doesn't extend across the entire length of the navbar, giving the impression that the white background of the hamburger menu button is covering part of the navbar's top border.