• 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

cvillelady

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 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • September 20, 2013 at 2:03 am in reply to: Move Comments Link to Bottom of Post #63488
    cvillelady
    Member

    Hi Brad,

    Thank you for your response. I'm still running into issues with this. I'm unable to get the comments link to appear at the bottom. It either appears directly below the date or not at all.

    February 27, 2013 at 2:14 pm in reply to: Editing the Footer #23157
    cvillelady
    Member

    I haven't tried this on a site yet, but I saw some code for adding a custom footer navigation bar here:
    http://www.areuconnected.com/genesis/customizing-genesis-footer-content/

    Scroll down to the directions for "Add a Custom Menu in Custom Footer."

    February 27, 2013 at 2:05 pm in reply to: Float Widgets Above Post Content #23154
    cvillelady
    Member
    This reply has been marked as private.
    February 27, 2013 at 10:46 am in reply to: Custom Footer with Credits and Background Image #23115
    cvillelady
    Member

    To remove the "Return to top of page" link in the credits, I used the function auc do footer. Thanks again for your help.

    February 25, 2013 at 11:52 am in reply to: Custom Footer with Credits and Background Image #22730
    cvillelady
    Member

    Hi,

    Thanks so much for your help so far. I moved the ribbon and credit links below the footer as you suggested. The credit links are now placed in the correct area.

    After I made these changes, I noticed the "Return to top of page" showed up on the left side of the ribbon. I thought that by removing the action for genesis_footer in the functions.php, I was controlling what would appear for my custom footer. Do you have a suggestion for how to remove this?

    Thanks!

    February 25, 2013 at 6:27 am in reply to: 3 Column Footer Alignment – Float Issue #22673
    cvillelady
    Member

    I found out that the Link Widget by Pankaj Biswas was causing the issue with the widgets not lining up. After removing this from the footer widgets, it worked.

    Thanks for your help.

    February 23, 2013 at 3:48 pm in reply to: 3 Column Footer Alignment – Float Issue #22453
    cvillelady
    Member

    Hi,

    Thanks for responding to my question. I removed the clear:right for .bottom-col1. I'm not sure if I did something wrong within the functions.php file. Hopefully the code below is OK to post and it will show up.

    In the functions.php file, I added the following code for the footer:

    genesis_register_sidebar(array(
    'name'=>'Footer One',
    'description' => 'This is the first footer column.',
    'before_title'=>'<h4 class="footertitle">','after_title'=>'</h4>'
    ));

    genesis_register_sidebar(array(
    'name'=>'Footer Two',
    'description' => 'This is the second footer column.',
    'before_title'=>'<h4 class="footertitle">','after_title'=>'</h4>'
    ));

    genesis_register_sidebar(array(
    'name'=>'Footer Three',
    'description' => 'This is the third footer column.',
    'before_title'=>'<h4 class="footertitle">','after_title'=>'</h4>'
    ));
    /** Customize the entire footer */
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    add_action( 'genesis_footer', 'custom_footer' );
    function custom_footer() {
    ?>
    <div class="footer-bottom-boxes">
    <div class="bottom-widgetized" id="bottom-col1">
    <?php if (!dynamic_sidebar('Footer One') ) : ?>
    <h4><?php _e("Footer Left Widget", 'genesis'); ?></h4>
    <p><?php _e("Footer Area for Customer Service Links.", 'genesis'); ?></p>
    <?php endif; ?>
    </div><!-- end .bottom-col1 -->
    <div class="bottom-widgetized" id="bottom-col2">
    <?php if (!dynamic_sidebar('Footer Two') ) : ?>
    <h4><?php _e("Footer Middle Widget", 'genesis'); ?></h4>
    <p><?php _e("Footer Area for Customer Service Links.", 'genesis'); ?></p>
    <?php endif; ?>
    </div><!-- end .bottom-col2 -->
    <div class="bottom-widgetized" id="bottom-col3">
    <?php if (!dynamic_sidebar('Footer Three') ) : ?>
    <h4><?php _e("Footer Right Widget", 'genesis'); ?></h4>
    <p><?php _e("Footer Area for Customer Service Links.", 'genesis'); ?></p>
    <?php endif; ?>
    </div><!-- end .bottom-col3 -->
    </div><!-- end #bottom-widgetized -->
    </div><!--end #footer-bottom-boxes -->
    <?php
    }

    I had also tried adding a clear div within the code above because I noticed that the .bottom-col1 was expanding the entire length of the content. I didn't see a change so at that point I tried different options using CSS. I wasn't sure if I did something wrong in the code above, so I also tried just adding one custom dynamic sidebar that contained 3 widgets and then using CSS to horizontally align them.  It produced the same problem.

    If I remove the entries for registering the sidebar in functions.php, they will line up horizontally.

    January 3, 2013 at 8:06 pm in reply to: Posts Overlapping Widgets in Genesis Featured Grid #9353
    cvillelady
    Member

    I'm going to close this thread because I was able to fix the problem with the posts.

    After adding <div class="clearer">&nbsp;</div> to the functions.php file for each of my custom widgets, I was able to fix it.

    Thanks again, Bill!

    January 3, 2013 at 5:26 pm in reply to: Posts Overlapping Widgets in Genesis Featured Grid #9312
    cvillelady
    Member

    Hi Bill,

    Thanks so much for your help so far.

    I now have the Genesis Featured Post Amplified Plugin installed.

    Looking specifically at the Faith Page you'll see that I got the widgets to appear in columns. Since you last looked at the code, I changed the widgets to Faith-Top and Faith-Bottom. I'm still running into a problem with how I have the CSS because the posts are showing at the bottom of the page. If I use a widget other than Featured Post Amplified, the posts appear in the correct place.

    December 22, 2012 at 9:29 am in reply to: Drop Down Menu Item Disappears on Hover #6940
    cvillelady
    Member

    Yes! I'm happy to report that it is now working in both IE and Firefox. I had to remove everything that was suggested in the link that you provided. I really appreciate your assistance.

    December 22, 2012 at 7:23 am in reply to: Drop Down Menu Item Disappears on Hover #6913
    cvillelady
    Member

    I deactivated each of the plugins and then activated them as I checked the drop down link . Unfortunately this also did not seem to fix the problem.

    December 22, 2012 at 6:52 am in reply to: Drop Down Menu Item Disappears on Hover #6910
    cvillelady
    Member

    Thanks for your suggestion. Although I removed the Homepage Feature widget, the drop down link is still not working correctly. I noticed that when I refresh the page, you can hover over the drop down link. However, if you don't click on it and just move the mouse away, it disappears the next time you hover over it.

    December 21, 2012 at 1:37 pm in reply to: Minimum Theme – Extend Navigation Width Outside Wrap #6714
    cvillelady
    Member

    I plugged in your suggested code and it worked! It doesn't appear to have caused any other display issues. Thanks so much.

     

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 total)

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