• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

genevishgraphics

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 48 total)
← 1 2 3 →
  • Author
    Posts
  • June 10, 2013 at 9:01 am in reply to: Add header left widget Minimum 2.0 #45032
    genevishgraphics
    Member

    I have another question, and I am looking at your website for the answer but cant find it. I am adding a custom body class to my blog page, so I have have an alternate header image for the blog page- BUT I need that alternate image to be on all the blog posts and category pages as well. This would be a conditional tag issue again, I am using this
    `
    // Add custom body class to the head
    add_filter( 'body_class', 'minimum_add_body_class' );
    function minimum_add_body_class( $classes ) {
    $classes[] = 'page_blog';
    if(is_archive() ) {
    return $classes;
    }
    }
    `
    and now the correct header is there on the blog page, but it is duplicated with the other site header, and the post and category pages only have the old header instead of the "blog" header

    June 10, 2013 at 8:29 am in reply to: Add header left widget Minimum 2.0 #45029
    genevishgraphics
    Member

    Of course! Why didnt I think of that?? 🙂 Thanks Brad!

    June 10, 2013 at 7:07 am in reply to: Add header left widget Minimum 2.0 #45005
    genevishgraphics
    Member

    NM - got it - Just added the plugin and entered in !is_page('blog') and now the left header is on all my pages but the blog pages 🙂

    June 10, 2013 at 6:56 am in reply to: Add header left widget Minimum 2.0 #45001
    genevishgraphics
    Member

    that is what I am struggling with - What is the right conditional tag? to only exclude the blog pages? Thanks for your help brad. I'm learning!

    June 10, 2013 at 6:41 am in reply to: Add header left widget Minimum 2.0 #44995
    genevishgraphics
    Member

    One question - how would I remove this widget ONLY from the custom blog template I have created?

    June 6, 2013 at 11:54 am in reply to: Add header left widget Minimum 2.0 #44372
    genevishgraphics
    Member

    Yippeee thanks Brad!!!

    May 14, 2013 at 12:47 pm in reply to: Reposition Header to Sidebar Left #40897
    genevishgraphics
    Member

    NM - Stupid old css code I had left in there!

    May 14, 2013 at 12:27 pm in reply to: Reposition Header to Sidebar Left #40893
    genevishgraphics
    Member

    Any ideas of how I can get the primary sidebar widget to display in the correct place now?
    I have the header right where I want it and the nav below that. However now my social icons that are in the primary sidebar are getting pushed to the right of the sidebar

    This is the code I am using to get things to finally work- courtesy of http://www.carriedils.com/
    I just changed the actions to where I wanted the header to go

    `/** Move header */
    remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    remove_action( 'genesis_header', 'genesis_do_header' );
    remove_action( 'genesis_header', 'genesis_header_markup_close', 15 ) ;

    add_action( 'genesis_before_sidebar_widget_area', 'genesis_header_markup_open', 5 );
    add_action( 'genesis_before_sidebar_widget_area', 'genesis_do_header' );
    add_action( 'genesis_before_sidebar_widget_area', 'genesis_header_markup_close', 15 );

    /** Move primary nav menu */
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_after_sidebar_widget_area', 'genesis_do_nav' );
    `

    May 14, 2013 at 12:15 pm in reply to: Reposition Header to Sidebar Left #40892
    genevishgraphics
    Member

    I got it - tinkering for awhile - but I think I have it!

    May 14, 2013 at 10:45 am in reply to: Reposition Header to Sidebar Left #40868
    genevishgraphics
    Member

    So wow - I have made som progress. I have figured out how to move the nav to the sidebar using
    `/** Move primary nav menu */
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_sidebar', 'genesis_do_nav' );`
    and it works great!
    However, after applying the same steps to the header using this
    `/** Move header */
    remove_action( 'genesis_header', 'genesis_do_header' );
    add_action( 'genesis_before_sidebar_widget_area', 'genesis_do_header' );
    `
    The only thing that gets moved to the sidebar is the title-area div, and the header div is still above the inner div.
    It is probably something simple, I know it is something I am missing here. Any helpers out there? Thanks!
    Site here

    May 13, 2013 at 6:18 pm in reply to: Reposition Header to Sidebar Left #40754
    genevishgraphics
    Member

    I did - no dice...yet. Maybe someone will help me out before the next version of genesis!! 😉
    But I will keep working at it to see what I can do on my own! Love Genesis!

    May 1, 2013 at 7:15 am in reply to: Changing the headline and content font #38735
    genevishgraphics
    Member

    You have conflicting css for the headers - in one place you have Marcellus and the other you have Julius Sans

    `h2,
    h2 a,
    h2 a:visited,
    h3,
    h4,
    h5,
    h6
    p,
    select,
    textarea {
    color: #000000;
    font-family: ‘Marcellus’, serif;

    `

    `h1,
    h2,
    h2 a,
    h2 a:visited,
    h3,
    h4,
    h5,
    h6 {
    color: #000ff;
    font-family: ‘Julius Sans One’, sans-serif;
    font-weight: bold;
    line-height: 1.25;
    margin: 0 0 10px;
    }

    `

    May 1, 2013 at 7:11 am in reply to: increase header size and float social icons to right? #38734
    genevishgraphics
    Member

    Double check your changes- When I visit the site I see css on line 193:

    #header {
    margin: 0 auto;
    min-height: 100px;
    width: 100%;
    So you have to go back in and check that line of code - I suggest using Developer Tools in Chrome to check your css of the pages you work on 🙂

    Hope this helps!

    February 21, 2013 at 9:10 am in reply to: Remove posts on home page #21965
    genevishgraphics
    Member

    I removed the

    add_action( 'genesis_loop', 'minimum_grid_loop_helper' );
    function minimum_grid_loop_helper() {

    if ( function_exists( 'genesis_grid_loop' ) ) {
    genesis_grid_loop( array(
    'features' => 0,
    'feature_image_size' => 'featured',
    'feature_image_class' => 'post-image',
    'feature_content_limit' => 0,
    'grid_image_size' => 0,
    'grid_image_class' => 'alignnone',
    'grid_content_limit' => 250,
    'more' => __( '[Read more]', 'minimum' ),
    ) );
    } else {
    genesis_standard_loop();
    }

    }

     

    from home.php and that did the trick - wrong method?

    January 30, 2013 at 2:05 pm in reply to: Minimum 2.0 Removing 4 featured areas on home page #16487
    genevishgraphics
    Member

    NVER MIND 0_O found it here .home #inner { display: none; }

    January 30, 2013 at 1:00 pm in reply to: Full Width Layout Issue – Minimum 2.0 #16443
    genevishgraphics
    Member

    Yep - I just found that too! LOL Thanks!

    January 28, 2013 at 8:50 am in reply to: Remove Title / Subscribe Area #15553
    genevishgraphics
    Member

    Isnt it easier just to remove

    /** Add the page title section */
    add_action( 'genesis_after_header', 'minimum_page_title' );
    function minimum_page_title() {
    require_once( get_stylesheet_directory() . '/page-title.php' );
    }

    From the functions.php file? I tired doing it via css as suggested and ended up with a giant mess. This worked a lot easier~

    January 25, 2013 at 2:00 pm in reply to: Remove Title / Subscribe Area #14719
    genevishgraphics
    Member

    Had the same issue - worked for me only I changed the neg margin to just 80. Problem is I have the gray area just on my home page covering up the header/logo. I have not made any other changes to the code other than this CSS - I did a compare of the functions file and the home.php files using TKDiff and there were no discrepancies - I disabled plugins too and no change. Thoughts? Suggestions greatly appreciated!
    Website

    December 28, 2012 at 3:36 pm in reply to: Responsive Slider Settings -Ascending/Descending #8013
    genevishgraphics
    Member

    Thank you - you see that the other slider has that option - why didnt they implement it with this version? Doesnt make sense to me! Well guess I will be changing the pub dates on 10 slides, ugh!

    December 28, 2012 at 8:12 am in reply to: Legacy & Genesis Responsive Slider #7876
    genevishgraphics
    Member

    That worked for me - Cant understand why it would do that in the first place really - Thanks though!

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 48 total)
← 1 2 3 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble