Edrol97
Silver Coder
Hi all,
I've got a navbar I want to create similar to the one below.

Currently my satirical version looks like this-

There are a few problems with the navbar- namely the shape of it- I want it to be slimmer cut down at the sides to about 75% width, and also there is a hover effect on the topnav in the first picture, that changes each of the menu options to a different colour. After trying defining each link as a specific class, i.e.,
and then styling the class
I've got a navbar I want to create similar to the one below.

Currently my satirical version looks like this-

There are a few problems with the navbar- namely the shape of it- I want it to be slimmer cut down at the sides to about 75% width, and also there is a hover effect on the topnav in the first picture, that changes each of the menu options to a different colour. After trying defining each link as a specific class, i.e.,
HTML:
<div class="topnavmail">
<a class="about" href="about_me.html">About</a>
CSS:
.topnavmail .about a:hover {
color: red;
}

