No matter what color I try to change it to, it always stays the same - a darker blue similar to a link. Here's the code I have:
<!-- Creating navigation bar -->
<style>
#TopBar{
position:fixed;
top:0;
left:0;
width:100%;
height:40px;
background-color:#181818;
}
</style>
<div id="TopBar"></div>
<!-- Creating Page Links -->
<ul>
<li><a href="default.asp">Cos'è</a></li>
<li><a href="news.asp">Chi Siamo</a></li>
</ul>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
color: white;
position: absolute;
font-size: 20px;
}
</style>
<style>
li {
display: inline;
}
</style>
I am hoping that someone can help me in changing the color of the buttons soon.