Help me full width the navigation background

Discussion in 'CSS' started by sherwina, Feb 29, 2012.

  1. #1
    Hello, i want to ask how to repeat the navigation bar, in full width because i cant manage to do it.
    When i try background-position:center center nothng happens
     
    sherwina, Feb 29, 2012 IP
  2. nemanja.todic

    nemanja.todic Well-Known Member

    Messages:
    69
    Likes Received:
    4
    Best Answers:
    1
    Trophy Points:
    130
    #2
    Care to share what you have done so far? Post your current html and css so that we can fix it.
     
    nemanja.todic, Feb 29, 2012 IP
  3. mandeepbamral

    mandeepbamral Banned

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    This navigation code should be placed outside of your centered content container to allow us to stretch it the full width of the browser window in our CSS.You should use this code :-


    #nav {
    width: 100%;
    float: left;
    margin: 0 0 1em 0;
    padding: 0;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ccc; }
     
    mandeepbamral, Mar 9, 2012 IP