Everything on my site is Full Width, except my BB Templates!!

I upgraded to the Agency version of Beaver Builder specifically for the awesome templates feature. It rocks! However, for some reason, it will not adopt the full width page layout. I am not sure what to do?

Full width is the default for my entire site, and even when I select the full width option, it is still boxed in. Now, when I apply the template on a page, it looks fine, but not within the template itself

It is hard to really build out awesome templates if I can’t see them as they will look on pages. Any help on how to get the Templates CPT to use a full width layout?

Hi Bodie,

Can you provide a link to your site, so we can take a closer look, please?

Thanks,
Danny

[Content Hidden]

Hey Bodie,

The styling that makes the pages full width is only targeting pages, not templates. Adding the CSS snippet below should fix you right up though.

.single-fl-builder-template.full-width-content .site-inner {
  max-width: none;
  padding-left: 0px;
  padding-right: 0px;
}
.single-fl-builder-template.full-width-content .content-sidebar-wrap {
  width: 100%;
}
.single-fl-builder-template.full-width-content .content {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

Ben