Modify Width of Navigation and Footer

Hi!

I’m looking for a way to modify the width of the navigation and the footer box to be the same as the header width (instead of the default 100%). Is there an easy way to achieve this?

Thank you and best regards
George

Hi George,

I hope you are well today and thank you for your question.

You can modify the width of the navigation and the footer box to be the same as the header width (instead of the default 100%) by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

nav.navbar.navbar-default,
footer#colophon {
  width: 1140px;
  margin: 0 auto;
  max-width: 100%;
}

Best Regards,
Movin