• 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

Tony @ AlphaBlossom

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 10 posts - 461 through 470 (of 470 total)
← 1 2 3 … 22 23 24
  • Author
    Posts
  • February 6, 2013 at 11:41 pm in reply to: Code at bottom of my page #18583
    Tony @ AlphaBlossom
    Member

    Hi, I haven't used that plugin, but it loos like you're just missing your php tags.

    Try adding <?php before and ?> after.

    Hope that helps,

    Tony

    AlphaBlossom


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 3:30 pm in reply to: focus css question #18514
    Tony @ AlphaBlossom
    Member

    Actually, just looked at it and it looks like you got it all sorted out now 🙂


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 3:29 pm in reply to: focus css question #18513
    Tony @ AlphaBlossom
    Member

    I wasn't sure if you just wanted the lower posts wider, or if you wanted them the same as the first couple of posts. If you open your home.php (child theme folder), you'll see this code:


    genesis_grid_loop( array(
    'features' => 2,
    'feature_image_size' => 0,
    'feature_content_limit' => 0,
    'grid_image_size' => 'grid-thumbnail',
    'grid_image_class' => 'alignnone',
    'grid_content_limit' => 250,
    'more' => __( '[Continue reading]', 'genesis' ),
    'posts_per_page' => 6,
    ) );

    If you change 'features' you can display more posts like the first two. You might also want to change 'posts_per_page' if you want to show more than six post.

    If you do this, you can reset the css above since you won't be showing the grid posts on the home page.

    Your sidebar is there, but it's empty.

    The copyright text looks like it's in your header widget, so you'll have to go into your admin panel and remove that.


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 2:40 pm in reply to: focus css question #18499
    Tony @ AlphaBlossom
    Member

    Hi Kris,

    Glad that helped. I'm not following you on the post image. When I look at the demo page, the "continue reading" link is the last thing to display for each post.

    Tony


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 2:14 pm in reply to: Agency: H2 CSS home page vs. Blog page #18491
    Tony @ AlphaBlossom
    Member

    Glad to hear it, Julia!


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 2:07 pm in reply to: Agency: H2 CSS home page vs. Blog page #18487
    Tony @ AlphaBlossom
    Member

    Try:


    .home #content h2 a {
    font-size: 20px;
    }

    If that doesn't work, you can add !important after 20px (font-size: 20px !important;)

    Hope that helps.

    Tony
    AlphaBlossom


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 1:59 pm in reply to: focus css question #18486
    Tony @ AlphaBlossom
    Member

    If you want to change it using just css (keeping the rest of the format the same), you can add:


    .home .genesis-grid-even,
    .home .genesis-grid-odd {
    width: 100%;
    }

    Adding .home will only change it on the homepage, that way you don't change this layout on other pages.

    Tony
    AlphaBlossom


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 1:05 pm in reply to: Metro: Stretch header+footer #18475
    Tony @ AlphaBlossom
    Member

    Adding this to your child theme's function.php will add an extra wrap div () inside your header and footer, which allows your header and footer to be full width. You now have a new wrap div inside your header and footer which you can set to your container width.


    /** Add support for structural wraps */
    add_theme_support( 'genesis-structural-wraps', array(
    'header',
    'footer'
    ) );

    Use css on your #header and #footer to set them for 100% width.

    (Add nav, subnav, inner, and footer-widgets to the code above if you want to add the extra wrap to these, fyi).

    You can install one of the full-width themes to see how the css is handled and copy that to your metro child theme css.

    Take care,
    Tony
    AlphaBlossom


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    February 6, 2013 at 12:44 pm in reply to: How To Center The Primary Navigation Horizontal Menus #18472
    Tony @ AlphaBlossom
    Member

    Hello,

    The menu is already centered, so I'm assuming you want the specific menu items centered. Try this:


    #nav li {
    float: none;
    display: inline-block;
    }

    You might also have to add:

    #nav ul {
    text-align: center;
    }

    Also, if you're using submenus or more than one, you will have to be more specific in your css targeting, but the above code worked with the menu you linked to above.

    And if you want it centered only on certain devices or screen resolutions, you can add this code to your media queries to target those (you can see examples of this in the new genesis style.css files).

    Take care,

    Tony
    AlphaBlossom


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

    November 14, 2012 at 8:11 pm in reply to: Welcome to the StudioPress Community Forums #167
    Tony @ AlphaBlossom
    Member

    Congratulations...looks awesome! Looking forward to the new community portal.


    Tony Eppright | http://www.AlphaBlossom.com | Follow me on twitter @_alphablossom

  • Author
    Posts
Viewing 10 posts - 461 through 470 (of 470 total)
← 1 2 3 … 22 23 24
« 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