Web Design: Menu Css | Develop Site

Good morning, today I will write about how to solve a problem to add a kind of submenu on the website of a client
The question is this, if required by the SEO work is needed to add to the body of the page (http://www.grupohogaral-worldtravel.com/servicios.html)a menu to see all the available videos. That's why I decided to do the following:

  • Set a fixed width of about 780px wide menu and assign a background color the next class:

    .menu{
    width: 780px;
    background-color: #333; }

  • Luego agregue el siguiente codigo para los tag de la lista:
    .menu ul{
    margin: 0; padding: 0;
    float: left;}

    .menu ul li{
    display: inline;}

    .menu ul li a{
    float: left; text-decoration: none;
    color: white;
    padding: 10.5px 11px;
    background-color: #333; }

    .menu ul li a:visited{
    color: white;}

    .menu ul li a:hover, .menu ul li .current{
    color: #fff;
    background-color:#0b75b2;}

English