I am working on creating a dynamic navigation bar with bootstrap 4. However, I am facing an issue with the top right button not expanding the navigation bar as expected. I have checked my code but I cannot figure out what I missed. Can anyone help me with this?
<nav class="navbar navbar-dark bg-dark navbar-expand-md fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="img/Placeholder.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#menu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="menu">
https://i.sstatic.net/ouwKe.png
Edit: I have now set "menu" as the id for the class "collapse navbar-collapse".
I tried the solution but it still didn't work.