changing navbar width
-
using
@media (min-width: 1200px) {
.container {
width: 960px;
}
}
I can get the content to be the right width, but the navbar gets messed up and runs off the right side of the browser.How do I make the navbar shrink to the width of the rest of the page and also not mess up the right hand boundary of the page? thanks.
The blog I need help with is: (visible only to logged in users)
-
Hello,
You would need to add the same width to the navigation for it to display as your container. To do so add the following CSS:
#header { width: 960px; }If this is not what you are looking for, can you clarify what you are trying to achieve?
Thanks,
Rebecca
-
-
- The topic ‘changing navbar width’ is closed to new replies.