Layout Width for Header & Footer

I noticed that the header and footer don’t scale when you set the Layout Width to Full Width.

Hey Dustin! This is a bit of a stylistic preference that we prefer. You can force the header to be full width too with some CSS. Something like this should be a good starting point:

.fl-full-width .fl-page-header .container {
	width: 95%;
}
.fl-full-width .fl-page-header .row {
	margin: 0;
}
.fl-page-nav-right .fl-page-header-row {
  width: 100%;
}

Let me know if that works for ya :slight_smile:

Gotcha. Thank you.

My pleasure!