Forum Replies Created
-
AuthorPosts
-
July 23, 2016 at 9:06 pm in reply to: How do I reduce the hight of the agency pro responsive header area #190106derekwbergMember
Yes I use dambuster.
July 23, 2016 at 1:13 pm in reply to: How do I reduce the hight of the agency pro responsive header area #190088derekwbergMemberHey Christoph
Sorry for the rookie move of pasting entire CSS...
So is this code you mentioned:
.gd-full-width .site-inner {
margin-top: 75px;
}Is this already in my CSS or something I have to add?
If it is there where is it?
If it is not there, where is the best place to insert it?
Derek
January 5, 2016 at 8:06 am in reply to: Alititude Theme and Beaver Builder not playing nice at all #175630derekwbergMemberI Added the dambuster plugin. Template is using full width of the page, but still does not resemble template at all.
May 21, 2015 at 7:16 am in reply to: Creating a custom alternative header image for a blog category #153087derekwbergMemberThanks brother!
derekwbergMemberFor some reason when I do that the home top disappears completely
Here is all of the code for front page
<?php
/**
* This file adds the Home Page to the Enterprise Pro Theme.
*
* @author StudioPress
* @package Enterprise Pro
* @subpackage Customizations
*/add_action( 'genesis_meta', 'enterprise_home_genesis_meta' );
/**
* Add widget support for homepage. If no widgets active, display the default loop.
*
*/
function enterprise_home_genesis_meta() {if ( is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-bottom' ) ) {
//* Force full-width-content layout setting
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );//* Add enterprise-pro-home body class
add_filter( 'body_class', 'enterprise_body_class' );//* Remove the default Genesis loop
remove_action( 'genesis_loop', 'genesis_do_loop' );//* Add home top widgets
add_action( 'genesis_after_header', 'enterprise_home_top_widgets' );//* Add home bottom widgets
add_action( 'genesis_loop', 'enterprise_home_bottom_widgets' );}
}function enterprise_body_class( $classes ) {
$classes[] = 'enterprise-pro-home';
return $classes;}
function enterprise_home_top_widgets() {
genesis_widget_area( 'home-top-left', array(
'before' => '<div class="home-top-left widget-area one-half first"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'home-top-right', array(
'before' => '<div class="home-top-right widget-area one-half"><div class="wrap">',
'after' => '</div></div>',
) );}
function enterprise_home_bottom_widgets() {
genesis_widget_area( 'home-bottom', array(
'before' => '<div class="home-bottom widget-area">',
'after' => '</div>',
) );}
genesis();
-
AuthorPosts