• 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

hmistler

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 46 total)
← 1 2 3 →
  • Author
    Posts
  • August 19, 2015 at 8:43 am in reply to: Header Image not showing on Front Page #162837
    hmistler
    Member

    I should add that when I click 'customize', the header logo DOES appear on the home page, with the customize options to the left. But still when you visit http://newenglandcoa.org/ it goes back to the site title.

    June 29, 2015 at 10:36 am in reply to: Remove 'Site Inner' from home page #157846
    hmistler
    Member

    Ah I see, thank you. Yes, it was the 40px background color area, sorry for any confusion. Your solution worked.

    May 13, 2015 at 1:56 pm in reply to: Same-page link or anchor? #152056
    hmistler
    Member

    Thanks for the reply - it seems that scrolls and anchors are just getting me to another part of the page, whereas I'm looking for text to appear & disappear. I'll keep looking, I read something about toggles that sounds promising.

    April 3, 2015 at 10:32 am in reply to: Genesis footer not at the bottom #146565
    hmistler
    Member

    Thank you so much, that worked!

    April 2, 2015 at 11:57 am in reply to: Blog signature issue #146476
    hmistler
    Member

    That's great, thank you. Any chance it can be moved to be above the share buttons I have? I'm using Simple Share Buttons.

    March 16, 2015 at 10:38 am in reply to: How to display text side-by-side? #144631
    hmistler
    Member

    Makes sense now. Thanks for taking the time to explain!

    March 16, 2015 at 9:22 am in reply to: How to display text side-by-side? #144624
    hmistler
    Member

    Ah, I see. That worked. So "clearfix" clears any float that the column classes use? Just curious, why would the clearfix div be necessary after the columns if my content is not within the column divs?

    March 16, 2015 at 7:11 am in reply to: How to display text side-by-side? #144609
    hmistler
    Member

    Thanks for the reply; I tried that and it isn't working either. It's really throwing me for a loop, I've never had this problem before! It seems that the image underneath reacts to whatever is going on up top, and I can't figure out why. You can really see it now: http://www.haleymistler.com/design/elizabeth-harrington/ Thanks for your help!

    March 16, 2015 at 7:03 am in reply to: Removing entry meta from certain posts, not all #144608
    hmistler
    Member

    Ah, it worked! I used my custom post type and the entry meta is now gone. Thank you!!

    March 15, 2015 at 1:55 pm in reply to: z-index issue #144499
    hmistler
    Member

    That worked, thank you!

    March 15, 2015 at 1:55 pm in reply to: remove .site-inner from one page #144497
    hmistler
    Member

    Wow, thank you so much! that second option worked perfectly!

    February 27, 2015 at 2:37 pm in reply to: Wrap content within widget #142579
    hmistler
    Member

    Me again - happy to report I solved this issue! Here's what I changed, in case anyone else has this problem:

    //* Add About Me widget
    add_action( 'genesis_before_footer', 'about_me' );
    function about_me() {
    		if (is_page('about'))
                    genesis_widget_area( 'about-me', array(
    		'before' => '<div class="about-me widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
        ) );
    
    }
    February 27, 2015 at 2:18 pm in reply to: Wrap content within widget #142572
    hmistler
    Member

    Sorry for the confusion - I was able to get that previous wrap tutorial to work (had left out one line) but it wraps my background color as well. So I'm back to my original code:

    //* Add About Me widget
    add_action( 'genesis_before_footer', 'about_me' );
    function about_me() {
    		if (is_page('about'))
                    genesis_widget_area( 'about-me', array(
    		'before' => '<div class="about-me widget-area" id="aboutme">',
    		'after'  => '</div>',
        ) );
    }
    
    genesis_register_sidebar( array(
    	'id'          => 'about-me',
    	'name'        => __( 'About Me', 'swank' ),
    	'description' => __( 'This is the About Me widget', 'swank' ),
    ) );

    I feel like I need to add this somewhere:
    <div class="wrap"> But I am not sure where I need to add it so the content wraps but not the background. Hope that makes sense...

    February 27, 2015 at 1:58 pm in reply to: Get widget to "sit on top of" footer #142569
    hmistler
    Member

    I ended up solving this - thank you

    February 24, 2015 at 3:26 pm in reply to: Get widget to "sit on top of" footer #142071
    hmistler
    Member

    I did try out a few things with z-index; it only changes the order of the overlap, not it's actual vertical position. When I change the position to "fixed", it does what I want it to on the home page: http://www.jpdevelopmentcorp.com/home/
    but it does not move down far enough on other pages with content: http://www.jpdevelopmentcorp.com/about/

    February 20, 2015 at 12:00 pm in reply to: Widget not showing up on page #141495
    hmistler
    Member

    Ah I see my mistake, thank you so much!

    February 19, 2015 at 12:24 pm in reply to: Remove site header PHP issue #141342
    hmistler
    Member

    Thanks so much, really appreciate it

    February 19, 2015 at 12:19 pm in reply to: Remove site header PHP issue #141340
    hmistler
    Member

    That worked, thanks!! Do mind telling me why I needed to add the markup_open and markup_close portions? Just trying to understand php better for future use!

    January 20, 2015 at 12:34 pm in reply to: Fatal error trying to add a widget #138108
    hmistler
    Member

    Oh, I see! I am new to php and trying to get the hang of it; I was able to fix it. Thank so much!

    December 30, 2014 at 10:44 am in reply to: Make existing widget area full-width above header #135673
    hmistler
    Member

    That worked! Thank you!

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 46 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

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