Is it safe to remove this line in index.css?
Working on a custom theme and set the forum width to be at 90% and have moved my top menu to be above the wrapper but the menu is somewhat centered and I want it to be to the left.
Can I just remove:
max-width: 1200px;
From:
#main_menu {
max-width: 1200px;
margin: 0 auto;
width: 90%;
padding-left: 10px;
}
Seems to work fine but does that mess anything else up?
As far as I know, it shouldn't really cause any problems, but instead of removing it completely I'd probably make it 90% as well or something along those lines. It's only a limit.
Thanks, I tried to set it at 90% as well but no change. It's still left of center but not all the way left as I want it. But it works (goes all the way to left) when I remove that line all together. Just wasn't sure if it would affect anything else.
Judging by that, 100% would probably get you what you are after. It's simply then saying that max width is the screen width.
Also change margin to margin: 0;, remove the auto.