Hi,
I am very, very new to BeaverBuilder and I want to use it on a couple of sites that I am using Genesis child themes (various themes).
The problem:
When I add a row and select FULL WIDTH, it stays within the container.
How to I make a row full width true full width?
Thank you in advance!
Kirsten
vlsvcp
(Kelly)
March 8, 2015, 4:04am
2
Thank you Kelly but that did not work. I even downloaded the magazine pro and tried that code with it and all it did was mess up my site. Perhaps I pasted the code in the wrong area?
I never, ever pay this much for plugins and I am so frustrated!
All I want is the capability to create a full width home page like the “HOPE” template using genesis as the base theme.
Can someone please help me? I’m on a deadline (of course).
Keeping my fingers crossed and thanking in advance.
Kirsten
Hi Kirsten,
perhaps this could help: Full Width Genesis . This is a great video from Colin (Dynamik Beaver). It’s based on Dynamik Website Builder but should work with Genesis only as well.
Regards, Leo
vlsvcp
(Kelly)
March 10, 2015, 8:16am
5
Hi Kirsten:
I use Magazine Pro on a # of sites, and the BB full width template + css works.
Step #1: Full width page template:
What did you name your page template? I use Genesis Extender so I don’t name the page template within the code.
I’ve added the template name to the Junior Atoms Code:
<?php
/**
* Template Name: Beaver Builder
* Description: Used for edge-to-edge Beaver Builder Page
*/
*/
//* Add beaver-page body class
add_filter( 'body_class', 'beaver_body_class' );
function beaver_body_class( $classes ) {
$classes[] = 'beaver-page';
return $classes;
}
//* Force full width content
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
//* Remove breadcrumbs
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
//* Remove Home Featured
remove_action( 'genesis_after_header', 'generate_home_featured' );
//* Remove Site-Tagline
remove_action( 'genesis_after_header', 'minimum_site_tagline' );
//* Remove entry header
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
//* Remove edit link
add_filter( 'genesis_edit_post_link' , '__return_false' );
//* Remove comments template
remove_action( 'genesis_after_entry', 'genesis_get_comments_template' );
//* Run the Genesis loop
genesis();
This is based on Junior Atoms code and should work on any Genesis site.
Step #2: let’s look at the CSS to see what needs to be fixed. We need a url (or make it private for BB support to help).
Magazine Pro uses different CSS than Dynamik or other Genesis themes. So the css solution will be theme specific.