I'm currently working on a web page layout and I encountered an issue with removing the underline from the links in my navigation bar. To fix this, I used text-decoration: none; but now I'm having trouble with other styles being overridden, like text alignment.
Here is a snippet of my code...
.nav-bar a {
text-align: center;
text-transform: uppercase;
font-family: "Varela Round";
font-size: 20px;
text-decoration: none;
}
<div class="nav-bar">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
If anyone has any suggestions or solutions, I'd greatly appreciate the assistance!