Hey there! So, I've been trying to fix the wonky drop-down menu on my website, but everything I've attempted so far hasn't worked. I've tinkered with float, margin, and a bunch of other CSS techniques, but no luck. Someone suggested using JavaScript to solve the issue, but I'm not keen on going down that road. Do you have any suggestions on how to straighten out this misaligned drop-down menu?
Here's a snippet of my CSS code for reference:
body { font-family: 'Open Sans', sans-serif; font-weight: 300; background-image: linear-gradient(to bottom right, #00f490, #00bbc9) }
h1 { font-family: 'Abril Fatface', cursive; font-size: 4.3rem; }
.jumbotron { background-color: rgba(0250, 235, 215, 0) }
.drop-shadow { text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.153); }
.lead { color: white; font-size: 2.2rem; }
.btn-outline-light { border-color: white; }
.btn-outline-light:hover { background-color: rgba(255, 255, 255, 0.057); }
Any help or advice would be greatly appreciated!