• 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

lwlindquist

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 - 1 through 20 (of 25 total)
1 2 →
  • Author
    Posts
  • March 16, 2015 at 2:26 pm in reply to: ul centering in featured post widget on homepage, Lifestyle-Pro #144666
    lwlindquist
    Member

    Nailed it.

    I had tried to use text-align: left; but hadn't thought to use justify.

    Thanks so much.

    October 25, 2014 at 7:55 pm in reply to: Spacing on Featured Posts widget #129213
    lwlindquist
    Member

    Fantastic. Thanks so much, Marcy.

    October 4, 2014 at 9:40 pm in reply to: Where'd the Parallax after entry widget go? #126792
    lwlindquist
    Member

    Right, but the widget doesn't show up in the widget area. That's the issue I'm having from the get go.

    That's why I'm saying it's so strange, because it should be included, and the support for it is showing in functions.php already. Just can't figure why I can't get at it.

    September 28, 2014 at 8:32 pm in reply to: Where'd the Parallax after entry widget go? #126096
    lwlindquist
    Member

    Brad, I added the code to the functions.php, and it's still not showing. So strange, because this theme is supposed to be equipped with the after-post widget out of the box.

    Working on it here: http://173.254.97.228/~tomasbyr/

    Ideas?

    May 27, 2014 at 6:31 am in reply to: Conditionally remove author box from posts by category #106950
    lwlindquist
    Member

    Yeah, mine is just about a hair past that. 🙂

    Thanks much for your help on this. Hired a guy to work it out for me. 🙂

    May 26, 2014 at 8:48 am in reply to: Conditionally remove author box from posts by category #106819
    lwlindquist
    Member

    Hmm. That didn't do it either...

    May 26, 2014 at 7:48 am in reply to: Conditionally remove author box from posts by category #106812
    lwlindquist
    Member

    Yeah, I had hoped that too. 🙂 Had tried it before consulting the forum and it didn't work. Not sure if there is something that needs to be modified for the specific theme (vs the 'dream' identifiers she's used, for instance).

    January 19, 2014 at 8:08 pm in reply to: Removing menu icons in Focus Pro #86012
    lwlindquist
    Member

    Oh, hooray. Nailed it. Thanks so much. 🙂

    January 19, 2014 at 7:57 pm in reply to: Center nav bar in Focus Pro #86011
    lwlindquist
    Member

    Perfect.

    Thanks so much. 🙂

    November 25, 2013 at 7:09 pm in reply to: Add sidebar widget to home page – Executive Pro #75608
    lwlindquist
    Member

    Now, why have I never thought of that? 🙂

    Alright. That works, and now I just need to fiddle with the css to work the rest of it out.

    Thanks so much for your help and patience.

    November 25, 2013 at 6:52 pm in reply to: Add sidebar widget to home page – Executive Pro #75606
    lwlindquist
    Member

    It was there last night, but not acting up until today. 🙂

    I changed the grid back to 1140px and got the sidebar to reappear. so we know where that problem was coming from. Score. 🙂

    Unfortunately, now I'm back to a wider grid than I prefer and I can't for the life of me persuade the slider to center on the page. Thoughts?

    November 25, 2013 at 5:39 pm in reply to: Add sidebar widget to home page – Executive Pro #75601
    lwlindquist
    Member

    Here you go -- I deleted the home-sidebar (thought I'd caught all the references, but missed that one, so thank you) but still sitting at the bottom:

    Thanks 🙂

    <?php
    /**
    * This file adds the Home Page to the Executive Pro Theme.
    *
    * @author StudioPress
    * @package Generate
    * @subpackage Customizations
    */

    add_action( 'genesis_meta', 'executive_home_genesis_meta' );
    /**
    * Add widget support for homepage. If no widgets active, display the default loop.
    *
    */
    function executive_home_genesis_meta() {

    if ( is_active_sidebar( 'home-slider' ) || is_active_sidebar( 'home-top' ) || is_active_sidebar( 'home-cta' ) || is_active_sidebar( 'home-middle' ) ) {

    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'executive_home_sections' );
    add_filter( 'body_class', 'executive_add_home_body_class' );

    }

    }

    function executive_home_sections() {

    genesis_widget_area( 'home-top', array(
    'before' => '<div class="home-top widget-area">',
    'after' => '</div>',
    ) );

    genesis_widget_area( 'home-cta', array(
    'before' => '<div class="home-cta widget-area">',
    'after' => '</div>',
    ) );

    genesis_widget_area( 'home-middle', array(
    'before' => '<div class="home-middle widget-area">',
    'after' => '</div>',
    ) );

    }

    // Move the home slider area outside the sidebar-content wrap
    add_action( 'genesis_before_content_sidebar_wrap', 'nabm_move_home_slider' );
    function nabm_move_home_slider() {
    if ( is_active_sidebar( 'home-slider' ) )
    genesis_widget_area( 'home-slider', array(
    'before' => '<div class="home-slider widget-area">',
    'after' => '</div>',
    ) );
    }

    //* Add body class to home page
    function executive_add_home_body_class( $classes ) {

    $classes[] = 'executive-pro-home';
    return $classes;

    }

    genesis();

    November 25, 2013 at 5:28 pm in reply to: Add sidebar widget to home page – Executive Pro #75595
    lwlindquist
    Member

    Terrific, thanks for your help with that.

    I've deleted/added the code you suggest, which now gets me the default sidebar widget displaying on the homepage (which ultimately was the goal) but it's still not displaying aligned with the Home Top, rather not until the Home Top is done.

    Suggestions on how to bring it up to sit just under the slider like the Home Top widget area?

    Thanks!

    November 16, 2013 at 12:12 pm in reply to: Header Right Widget overlaps logo image in Metro Pro #73437
    lwlindquist
    Member

    In functions.php I modified the width and height in this section (don't recall the original, I changed to 360 and 107):

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'width' => 360,
    'height' => 107,
    'header-selector' => '.site-title a',
    'header-text' => false

    In style.css, I modified the width of the title area in this section.

    /* Title Area
    --------------------------------------------- */

    .title-area {
    float: left;
    padding: 0;
    width: 500px;
    }

    In this case, I made it 500px which is wider than the 360px image, though that may not have been needed once I fiddled with the responsive section. Would take some trial and error I suppose, but I got it to work and left it at that. 🙂

    Hope that helps.

    LW

    October 30, 2013 at 7:04 am in reply to: Headers widgets out of place in mobile view #69875
    lwlindquist
    Member

    Was having a similar problem and resolved it by adjusting the header right widget area width in the responsive section of the css.

    This thread may be of help to you. http://www.studiopress.community/topic/header-right-widget-overlaps-logo-image-in-metro-pro/

    October 29, 2013 at 7:36 pm in reply to: Header Right Widget overlaps logo image in Metro Pro #69814
    lwlindquist
    Member

    Tried that -- hoping you'd be more persuasive with it, since it didn't believe me the first time. 🙂

    Still didn't work. But I went south and fiddled with the widget area width and the title area width in the responsive section of the css. Decreasing the widget area width still didn't resolve it, but widening the title area to match the width of the header image did the trick.

    Thanks for the suggestion -- got me thinking there had to be a missing piece somewhere. And thanks on the site. Happy with the way it turned out. 🙂

    LW

    September 5, 2013 at 11:02 am in reply to: Problem with buttons in Streamline theme #60882
    lwlindquist
    Member

    Perfect. Thank you!

    July 12, 2013 at 8:39 am in reply to: Adding distinct header to landing page in Decor #50366
    lwlindquist
    Member

    Thanks Brad. Plug-in worked perfectly.

    And you have a new email subscriber. 🙂

    June 4, 2013 at 12:04 pm in reply to: Navigation and footer formatting issue on Decor pages #44058
    lwlindquist
    Member

    Same edit to the css on the #nav and #subnav .wrap fixed the other.

    Thanks much for you help!

    June 4, 2013 at 12:01 pm in reply to: Navigation and footer formatting issue on Decor pages #44055
    lwlindquist
    Member

    No, wait. Tried again. That did fix the footer. My bad. Let me experiment with the nav formatting and see if I can work your magic there.

     

    Thanks!

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 25 total)
1 2 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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