Site logo

Archived topic

Custom Post template will not go full-width (GP + Elementor + AE + Toolset)

2 replies · Started by James on January 8, 2018

Viewing posts 1–3 of 3

hello, good evening. I am having a bit of trouble and would seriously appreciate any assistance you could offer.

I am using the following combination: Generatepress + Elementor + Anywhere Elementor + Toolset.

The issue i'm having is that a custom post type created with toolset, using a custom post template made in elementor, is not displaying full width. It always displays boxed layout by GP. Any chance you can help me finish this?

You can view the page here:
http://bluepointdigital.com/sites/elitehomes1/property/the-laurel/

Hello, any help with this one?

Hi James,

Typically you would use the Page Builder Container metabox section:

Or you can add the class to all single property types with a function:

add_filter( 'body_class', 'tu_add_property_body_class' );
function tu_add_property_body_class( $classes ) {
    if ( is_singular( 'property' ) ) {
        $classes[] = 'full-width-content';
    }

    return $classes;
}
This archived topic is closed to new replies.