Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hello,
I would like to have my header and menu span the whole page but have the content boxed.
I would also like to add a drop shadow below the menu bar.
Similar to this site : http://anastasiabeverlyhills.com/
my website is: www.boydslanding.com
Thanks,
Cal
Hi Cal
Set the theme layout to Boxed under Theme Settings. Then insert the following under Appearance > Custom CSS:
/* Vantage Boxed Layout - 100% Width Header */ body.responsive #page-wrapper { max-width: none; padding-top: 0; } header#masthead .full-container, #main-slider, #main, #colophon { box-sizing: border-box; margin: 0 auto; max-width: 1080px; }Here is a bottom menu shadow, adjust as required:
/* Vantage Boxed Layout - 100% Width Header */ body.responsive #page-wrapper { max-width: none; padding-top: 0; } header#masthead .full-container, #main-slider, #main, #colophon { box-sizing: border-box; margin: 0 auto; max-width: 1080px; } /* Menu Shadow */ .main-navigation { box-shadow: 0 4px 2px -2px rgba(0,0,0,0.3); }