.navbar {
background-color: 595959;
color: #ffffff;
list-style: none;
}
<ul class = "navbar">
<li><a href = "#">Home</a></li>
<li><a href = "#">About Us</a></li>
<li><a href = "#">Our Projects</a></li>
<li><a href = "#">Contact Us</a></li>
<li><a href = "#">Donate</a></li>
</ul>
No matter what I do in my CSS stylesheet to style the navbar nothing changes. In the code above I tried to remove the bullets with the list-style however nothing changes as shown in the photo. It seems no css commands are making any difference on the unordered list.