I'm using a custom theme on my website.
What I'd like to do is have the header to be boxed while having the main content staying as is.
I've looked at several other threads, but I couldn't manage to make my way to the solution with the theme.
here is my header CSS that makes its full width
.full-width-content .wrap, .full-width-content .content-sidebar-wrap {
margin: 0 auto;
max-width: 100%;
width: 100%;}
I'm using a custom theme on my website.
What I'd like to do is have the header to be boxed while having the main content staying as is.
I've looked at several other threads, but I couldn't manage to make my way to the solution with the theme.
here is my header CSS that makes its full width
.full-width-content .wrap, .full-width-content .content-sidebar-wrap {
margin: 0 auto;
max-width: 100%;
width: 100%;}
If you want to reduce the width of your header ,
you can do few different methods.
If you use bootstrap, add class container to your header, which will add left and right padding to the element.
Or you can add your own css. With the given url, I found that your header's wrap class can be updated to get you a custom width. so here it is,
.site-container header.site-header.fixed .wrap{width: 80%;}
you can change the value as you wish