• 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

wp guy

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 - 121 through 140 (of 169 total)
← 1 2 3 … 6 7 8 9 →
  • Author
    Posts
  • March 13, 2013 at 3:57 pm in reply to: Magazine Theme Header Background #26043
    wp guy
    Member

    Ok, I might need some clarity. Are you referring to the black areas above and below your purple header image? The top black space is your nav menu - color controlled here:
    #nav {
    background-color: #333;
    clear: both;
    overflow: hidden;

    And below is another menu.

    March 13, 2013 at 3:20 pm in reply to: Magazine Theme Header Background #26030
    wp guy
    Member

    Can you post a link to your site please?

    March 13, 2013 at 2:00 pm in reply to: What approach to use for building multi language website? #25929
    wp guy
    Member

    Here's one possible solution: http://wpml.org/

    March 13, 2013 at 11:27 am in reply to: What plugin for lightbox effect? #25886
    wp guy
    Member

    Nextgen gallery plugin. http://wordpress.org/extend/plugins/nextgen-gallery/

    March 13, 2013 at 10:46 am in reply to: Using text only for the News Theme header #25880
    wp guy
    Member

    Well, using Firebug I'm not seeing a font defined for your title area but it appears your H1 is using the Oswald font family. If it's just a temp text logo I'd just choose any font that looks decent.

    March 13, 2013 at 10:35 am in reply to: Using text only for the News Theme header #25876
    wp guy
    Member

    Then I'm at a loss. Personally I'd just open my photo program, type the site title and upload as your temp logo.

    March 13, 2013 at 10:29 am in reply to: Using text only for the News Theme header #25873
    wp guy
    Member

    Hmmm, when you click Settings - General - do you have a site title?

    March 13, 2013 at 10:20 am in reply to: Using text only for the News Theme header #25871
    wp guy
    Member

    1) In Genesis, click text instead of image for logo.

    or

    2) Appearance - Themes - Customize - Site Title & Tagline - Display header text.

    March 13, 2013 at 9:19 am in reply to: Looking for a Studiopress Theme Developer #25859
    wp guy
    Member

    Genesis Developers

    March 12, 2013 at 1:12 pm in reply to: Social Media flags #25692
    wp guy
    Member

    Someone will come along and give you the easy way, hopefully. Here's the hard way. Hyperlink each one of those images to your social media site, then put 'em in a text widget and drag that into the Header Right widget area.

    March 12, 2013 at 12:21 pm in reply to: Focus home page — how to customize? #25681
    wp guy
    Member

    Fresh out of ideas. Sorry. Which widget are you using? Latest posts? How about just installing a better widget that will allow you to limit the characters?

    http://wordpress.org/extend/plugins/ultimate-posts-widget/

    March 12, 2013 at 11:58 am in reply to: Focus home page — how to customize? #25676
    wp guy
    Member

    Two things to try:

    1) Click Genesis and under "content archives" you can put in a character limit

    2) In your themes "Settings" - "Reading" click "Summary."

    March 12, 2013 at 9:40 am in reply to: Change width of child theme #25655
    wp guy
    Member

    Can you provide a link to your site?

    March 12, 2013 at 9:20 am in reply to: Header Image Not Showing – Tapestry theme #25648
    wp guy
    Member

    Give this a shot, don't know if it'll work but it's quick: Click "appearance" then "themes" then "customize" then "site title& tagline" and uncheck "display header text."

    If not, when you click "Genesis" you should see the option to choose text or an image for the header.

    March 12, 2013 at 9:17 am in reply to: Is this possible? #25647
    wp guy
    Member

    I found this:

    http://stackoverflow.com/questions/9527380/removing-html-from-the-end-of-site-address

    March 11, 2013 at 3:45 pm in reply to: Enterprise Getting Rid of WP Cycle PHP #25512
    wp guy
    Member

    Thanks for the help. I took out the wp cycle php and while it didn't break the theme, it also didn't work. Here's the link to the site: http://supplementmymedicare.com/

    I still need to find a way to turn the Home Top #2 area into a regular widget area. Here's how the code for home.php reads now:

    <?php
    /**
    * This file handles the output on the homepage.
    */

    add_action( 'genesis_after_header', 'enterprise_home_top_helper' );
    /**
    * Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle.
    */
    function enterprise_home_top_helper() {

    echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">';

    if ( is_active_sidebar( 'home-top-1' ) ) {
    echo '<div class="home-top-1">';
    dynamic_sidebar( 'home-top-1' );
    echo '</div><!-- end .home-top-1 -->';
    }
    echo '<div class="home-top-2">';

    echo '</div><!-- end .home-top-2 -->';
    echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->';

    March 11, 2013 at 6:06 am in reply to: Genesis theme footer #25443
    wp guy
    Member

    The easiest way for me is to just add this to my functions.php file.

    /** Customize the credits */
    add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
    function custom_footer_creds_text() {
    echo '<div class="creds"><p>';
    echo 'Copyright &copy; ';
    echo date('Y');
    echo ' &middot; <a href="http://mydomain.com">My Custom Link</a> &middot; Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
    echo '</p></div>';
    }

    March 10, 2013 at 8:53 pm in reply to: Remove margin between header and navigation menu #25398
    wp guy
    Member

    This may sound odd, but it's something to try; drag a text widget into that widget area - leave it blank. And make sure you have applied the padding changes.

    March 10, 2013 at 8:49 pm in reply to: Remove margin between header and navigation menu #25396
    wp guy
    Member

    Is this what you changed?

    #header .widget-area p {

        margin: 0;
        padding: 0 0 5px;

    }

    Because you'll still need to change this:

    #header .widget-area {

        float: right;
        padding-right: 10px;
        padding-top: 20px;
        width: 478px;

    }

    March 10, 2013 at 8:40 pm in reply to: Remove margin between header and navigation menu #25394
    wp guy
    Member

    Hmmm, try decreasing the top padding:

    #header .widget-area {

        float: right;
        padding-right: 10px;
        padding-top: 20px;
        width: 478px;

    }

     

  • Author
    Posts
Viewing 20 posts - 121 through 140 (of 169 total)
← 1 2 3 … 6 7 8 9 →
« Previous Page

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