Click here to Skip to main content
15,878,970 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to make the navigation menu bar full page ? I mean I want to remove the space in left and right side of the navigation menu bar.
CSS
I tried following css but could not do.




<pre lang="css">.main-navigation ul {
    background-color: #315448;
    display: block;
    list-style: none outside none;
    margin: 0;
    padding-left: 0;
    text-align: center;
    width : full;
}</pre>
Posted

1 solution

CSS
main-navigation ul {
    background-color: #315448;
    display: block;
    list-style: none outside none;
    margin: 0;
    padding-left: 0;
    left:0;
    right:0;
    text-align: center;
    width : 100%;
}


-KR
 
Share this answer
 
v2
Comments
Adrishya 14-Mar-14 16:27pm    
Thanks for the help but I have already tried "width : 100%;" but it still didn't work. There is still space in left and right hand side.
Krunal Rohit 14-Mar-14 16:28pm    
Answer is updated.!

-KR
Adrishya 14-Mar-14 16:38pm    
Still not worked :( I am surprised whats going on.
John Teague 10-Dec-14 16:58pm    
Please post a link to the page in question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900