Is it possible display sub-menus in horizontal navigation menu css above the button?

Q: Hello, Is it possible to display the sub-menus above the button if the navigation bar is at the bottom of the screen ? Thanks.

A: You should open "style.css" file in any text editor (for example, NotePad), find the
following lines:

ul#css3menu1 ul{
        display:none;
        position:absolute;
        left:0;top:100%;
        -moz-box-shadow:3.5px 3.5px 5px #000000;
        -webkit-box-shadow:3.5px 3.5px 5px #000000;
        box-shadow:3.5px 3.5px 5px #000000;
        padding:0 10px 10px;
        background-color:#FFFFFF;
        border-radius:6px;
        -moz-border-radius:6px;
        -webkit-border-radius:6px;
        border-color:#d4d4d4;}



and

ul#css3menu1 ul ul{
        position:absolute;left:100%;top:0;}



and change "top" parameter onto "bottom".

Related