• 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

Stefsull

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 43 total)
1 2 3 →
  • Author
    Posts
  • June 16, 2014 at 1:30 pm in reply to: Have a double heading on the first post of each page #110024
    Stefsull
    Member

    Yes! Thank you so much for your help, Brad. 🙂

    June 16, 2014 at 12:44 pm in reply to: Have a double heading on the first post of each page #110015
    Stefsull
    Member

    The resolution involved making the changes via a template applied instead of the functions.php page. And no, I'm unclear on why that worked, but thought I'd mention it.

    June 5, 2014 at 3:39 pm in reply to: Have a double heading on the first post of each page #108231
    Stefsull
    Member

    Thanks... emailed you. And yes, your image is what I'm trying to achieve... except for that one. little. problem. 😉

    June 5, 2014 at 3:11 pm in reply to: Have a double heading on the first post of each page #108220
    Stefsull
    Member

    Brad, I did a private link to the site, but I can't tell by looking whether it went to you or not. It shows private, but not who it's for. Let me know if you can NOT see it. Cheers.

    June 5, 2014 at 3:10 pm in reply to: Have a double heading on the first post of each page #108218
    Stefsull
    Member
    This reply has been marked as private.
    June 5, 2014 at 3:04 pm in reply to: Have a double heading on the first post of each page #108217
    Stefsull
    Member

    My site is built off the Genesis Sample. It's on a staging server... I can link you to that privately.

    June 5, 2014 at 2:38 pm in reply to: Have a double heading on the first post of each page #108212
    Stefsull
    Member

    Yup... that's what I was saying in the previous post: "any page that’s a collection of blog posts (blog home, archive, tags, categories and author)." All of those should be in this same style. Thanks.

    June 5, 2014 at 1:51 pm in reply to: Have a double heading on the first post of each page #108204
    Stefsull
    Member

    Now I gotcha.

    On all the pages that show lists of blog posts, my designer wants this order: http://screencast.com/t/KGvgV5RLvR9

    Panoramic image (I created the new image type)
    Post-info
    Post-title
    Snippet
    Post-meta

    So what I was attempting to do (in my own feeble way) is to unhook those items and reorder them (which I was "mostly successful" at).

    Where have I gone wrong? (I'm a good front-end dev, but still learning Genesis/WP... so I tend to hack things together and I'm still trying to learn best practices.)

    June 5, 2014 at 1:45 pm in reply to: Secondary menu with separate class? #108203
    Stefsull
    Member

    Always happy to help on things I'm good at... I'm so new at too much of this WP stuff. 😉

    Cheers

    June 5, 2014 at 1:16 pm in reply to: Where's my header? #108198
    Stefsull
    Member

    Which theme are you using? In the Genesis Sample theme, I had to name the image the same, upload it, and then check a box in the admin that said to use the image rather than text...

    June 5, 2014 at 1:13 pm in reply to: Secondary menu with separate class? #108197
    Stefsull
    Member

    Your best bet would probably be to be more specific with those hover classes so they only apply to the main menu. Even though both menus have the same class (.genesis-nav-menu), they're in containers with different classes. The main menu is in the nav container called .nav-primary and the secondary menu is in a nav container called .nav-header.

    By writing styles more specifically you can target the menus separately:

    .nav-primary .genesis-nav-menu { property: value; } - targets only the main menu.

    .nav-header .genesis-nav-menu { property: value; } - targets only the secondary menu.

    However, anything written as .genesis-nav-menu without the modifier class prior to it will apply to both menus.

    If it were me, I'd write the shared styles with the simple .genesis-nav-menu class and divide up the rest with the more specific selectors... rather than trying to override the unnecessary styles with further CSS.

    The rule you need to divide up to get rid of those hovers is this one:

    .genesis-nav-menu li:hover, .genesis-nav-menu a:hover {
    color: FFFFFF; /* this color isn't being applied because it's missing the # (should be #FFF) */
    background-color: #dbdbdb;
    text-decoration: none;
    border-radius: 0.4em;
    -moz-box-shadow: inset 0 0 2px #444;
    -webkit-box-shadow: inset 0 0 2px #444;
    box-shadow: inset 0 0 2px #444;
    }

    Hope that helps...

    June 5, 2014 at 12:39 pm in reply to: Have a double heading on the first post of each page #108194
    Stefsull
    Member

    I want that extra first .entry-title to go away. I don't know what is making it duplicate ONLY on the first post of any page that's a collection of blog posts (blog home, archive, tags, categories and author). Whether I'm showing 5 posts or 10 posts, when you got to the second page of posts, again, that first title is duplicated OVER the div.each-post that holds the image, title and post-info... and the rest is properly inside.

    Any thoughts on what could be causing the duplication?

    May 29, 2014 at 3:55 pm in reply to: Losing all author_info when moving genesis_post_info #107369
    Stefsull
    Member

    OK. For those following along at home (or running into this at a later date), after googling to figure out how to do what Brad described above, I found a great code snippet from someone who already did exactly what I needed. Thank you generous people for sharing! If you need to create a new shortcode to get the post author info to use outside The Loop, it's here:

    http://ahjira.com/genesis-post-author-short-code-does-not-work-outside-the-loop/

    (And thanks again for pointing me in the right direction, @braddalton.)

    May 29, 2014 at 2:39 pm in reply to: Losing all author_info when moving genesis_post_info #107361
    Stefsull
    Member

    On it, Brad! I had no way to verbalize it since this is not my expertise, but I told my husband (also a developer) that it <b>must</b> be due to it not being "allowed" for some reason where it is. Thank you so much for the lifeline...

    May 29, 2014 at 2:14 pm in reply to: All "entry content" displaying inside "entry header" #107358
    Stefsull
    Member

    Goodonya. Oh how I wish the problem I posted about the time you did turned out the simple. 🙂

    Cheers

    May 29, 2014 at 2:13 pm in reply to: All "entry content" displaying inside "entry header" #107356
    Stefsull
    Member

    I'm using a different theme, so this may be offbase, but in mine to appear after the header (and not within it) I would start the code with:

    add_action( 'genesis_after_header', 'olotus_offerings_subhead' );

    Have you tried that?

    February 19, 2014 at 12:32 pm in reply to: Mobile responsive sidebar menu #91241
    Stefsull
    Member

    OK, then I think you'll be good to just put it in like the rest of your menu. Mine looks like this (in Genesis): http://screencast.com/t/NXa0wjKPpJ

    February 19, 2014 at 12:09 pm in reply to: Mobile responsive sidebar menu #91228
    Stefsull
    Member

    Glad it's working... I'm guessing you want it to actually be PART of the menu above the header <nav class="nav-primary"?

    If so, I believe you have to do that in the menu widget.

    Can you paste in here what you've got in the Simple Hooks settings box for the skip link & menu?

    February 19, 2014 at 11:24 am in reply to: Mobile responsive sidebar menu #91187
    Stefsull
    Member

    Somehow, the link has double quotation marks. Here's the code: http://screencast.com/t/tObESO6n9i

    And here's where it's trying to send the person: http://screencast.com/t/ylWiucHdXe

    As to the hooks - are you entering the code for the menu AND the skip link in the same box? Like this: http://screencast.com/t/EgkqUp7DHu

    February 19, 2014 at 11:06 am in reply to: Mobile responsive sidebar menu #91182
    Stefsull
    Member

    Is there anywhere I can see this online in the page (to see why it's going to the 404)? It doesn't appear to be in the link above...

    I don't know Streamline Pro, so I can't really say why the hook isn't working. Can you paste the hook that works and the hook that doesn't into the forum? And maybe we can spot the problem?

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

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