Okay, so I've run into a simple issue, but I can't seem to figure out the solution.
Ever since I wrote this code, I've noticed these small dots appearing below the menu.
Take a look at the image for a clearer picture.
https://i.sstatic.net/2nJVm.png
Code
#MenuID li {
color: white;
display: inline-block;
list-style: none;
background-color: rgba(255, 146, 0, 0.5);
font-size: 20px;
position: relative;
left: 220;
top: -48;
font-weight: bold;
width: 10%;
text-align: center;
border: 1px solid black;
}
#MenuID li:hover {
background-color: rgba(255, 255, 0, 0.5);
}
#MenuID li a {
text-decoration: none;
color: white;
}
<ul id="MenuID">
<li> <a href="index.html"> Home </li>
<li> <a href="index.html"> Forum</li>
<li> <a href="index.html"> Website</li>
</ul>