Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Can't center my Top Drop Down Navi Bar

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #171082
    lykouridis
    Participant

    Hello all.
    I am a new in CSS, and i need some help of how i can center my Top Drop Down Navi Bar.

    Here is the CSS code:

    nav ul ul {
    display: none;
    }

    nav ul li:hover > ul {
        display: block;
    }
    

    nav ul {
    background: #efefef;
    background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
    background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
    box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
    padding: 0 20px;
    border-radius: 10px;
    list-style: none;
    position: relative;
    display: inline-table;
    }
    nav ul:after {
    content: “”; clear: both; display: block;
    }

    nav ul li {
    float: left;
    }
    nav ul li:hover {
    background: #006400/4b545f/;
    background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
    background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
    }
    nav ul li:hover a {
    color: #fff;
    }

    nav ul li a {
        display: block; padding: 25px 40px;
        color: #757575; text-decoration: none;
    }
    

    nav ul ul {
    background: #5f6975; border-radius: 0px; padding: 0;
    position: absolute; top: 100%;
    }
    nav ul ul li {
    float: none;
    border-top: 1px solid #6b727c;
    border-bottom: 1px solid #575f6a;
    position: relative;
    }
    nav ul ul li a {
    padding: 15px 40px;
    color: #fff;
    }
    nav ul ul li a:hover {
    background: #006400/4b545f/;
    }

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

    The specific CSS is running within SharePoint 2013 if that make sense…..

    #171083
    Paulie_D
    Member

    Do you want to center the bar…or the list items within it?

    No codedumps please…just make a reduced case in Codepen.io

    #171085
    lykouridis
    Participant

    i finally manage it via the html.

    thx anyway

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.