Question 1
I was wondering if anyone can help me change the opacity of the drop down background colour when the user hovers over it on the nav bar? I have tried look at other tutorials. However, I have had no luck.
Here is my code
    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }
    .navbar.navbar-default ul li a:hover {
      color: white;
    }
 
    