• 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

chamster

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 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • June 9, 2014 at 2:11 pm in reply to: Posts as menu items (or custom links in menu) #108660
    chamster
    Member

    Just found part of the answer. Duh. It's under Screen Options at the top of the page. But still nowhere to enter custom links.

    March 23, 2014 at 9:03 am in reply to: Customize Genesis Featured Posts in Agency Pro #96174
    chamster
    Member

    This topic was resolved here: http://www.studiopress.community/topic/nth-of-type-css-on-agency-pro-featured-posts/

    Thank you to those who took the time to respond.

    March 23, 2014 at 9:01 am in reply to: nth-of-type CSS on Agency Pro Featured Posts #96173
    chamster
    Member

    Okay I found the 3n+1 code in style.css of Agency Pro theme. I don't know how I missed it. I searched that file so many times, even doing a "find" on the number 3 and on +, etc. So I'm baffled at how I didn't find it, but hopefully my wasted hours and brddalton's responses above will prevent someone from wasting as much time in the future.

    At any rate, I changed 3n+1 to 4n+1 and that's it, done. Simple as that, and as simple as I knew it had to be.

    March 22, 2014 at 11:19 pm in reply to: nth-of-type CSS on Agency Pro Featured Posts #96129
    chamster
    Member

    I've already done that css with the 25% etc. Made things look right, as far as sizes of boxes go, but still 3 columns, which is why I'm convinced that the nth-of-type(3n+1) is the key to solving that problem.

    March 22, 2014 at 11:17 pm in reply to: nth-of-type CSS on Agency Pro Featured Posts #96128
    chamster
    Member

    Line 1268 in which file?

    I'm on a Mac, so I can't use Notepad++

    March 22, 2014 at 9:55 am in reply to: Agency Pro Sidebar on Home Page #96073
    chamster
    Member

    Good idea. Might make for faster page loading vs. having another plugin.

    Not sure where one would put that conditional code though.

    March 22, 2014 at 9:26 am in reply to: Images not showing up on IOS #96069
    chamster
    Member

    Duh! I should have figured that one out. That's happened before when I copied a WP site from my hard drive to the web. Just changing the site url in settings doesn't catch everything.

    Thanks for pointing it out!

    PS for the images, I'm going for the effect from the Agency Pro demo. Not sure I'll stick with it though.

    March 21, 2014 at 4:23 pm in reply to: Agency Pro Sidebar on Home Page #95996
    chamster
    Member

    Thanks. That worked to put the sidebar on the home page.

    It was below the home top widget area, so I replaced

    //* Add homepage home-top
    add_action( 'genesis_after_header', 'agency_homepage_top' );

    with

    //* Add homepage home-top
    add_action( 'genesis_before_loop', 'agency_homepage_top' );

    on line 46. That put the sidebar up at the top-right, where I wanted it.

    In order to show different sidebar content on homepage vs. interior, I used the Display Widgets plugin.

    Thanks for the help!

    March 20, 2014 at 10:36 pm in reply to: Customize Genesis Featured Posts in Agency Pro #95921
    chamster
    Member

    Does anybody know where/how the .post:nth-of-type(3n+1) class gets put in for the 1st and 4th posts in the featured posts widget? I'm stumped! Thanks.!

    March 14, 2014 at 11:09 am in reply to: Customize Genesis Featured Posts in Agency Pro #94875
    chamster
    Member

    Thanks for the idea. Makes sense, and I think those changes did need to be made, but making them still didn't achieve the objective. I've uploaded the new stylesheet to the url above. I just tried to go for 4 columns, so I set the max-width to 600px and the post width to 25%. But still 3 columns.

    When I view the page source code in Firefox, the article tags don't show any .post:nth-of-type classes. But when I inspect the page in Firebug the 1st and 4th articles both have the .post:nth-of-type(3n+1) class applied to them. All the articles have a float:left style, but only the 1st and 4th articles have the .post:nth-of-type(3n+1) class, which gives those 2 articles a clear:left. This causes the 4th article to be displayed on a new "row", as opposed to being displayed to the right of the preceding article.

    At least that's how it appears to be working. So my question remains: where is that .post:nth-of-type(3n+1) coming from?

    Thanks.

    March 13, 2014 at 7:54 pm in reply to: Customize Genesis Featured Posts in Agency Pro #94789
    chamster
    Member

    I'm not sure which setting you're referring to but "number of posts to show" is set to 9. I don't see another setting that seems relevant. If I change it to 5, it still shows 3 columns.

    March 13, 2014 at 7:45 pm in reply to: Customize Genesis Featured Posts in Agency Pro #94787
    chamster
    Member

    Well I've hunted it down and found the following css:

    .home-bottom .featuredpost .post:nth-of-type(3n+1),
    .home-middle .featuredpost .post:nth-of-type(3n+1) {
    clear: left;
    }

    I'm just learning about this, but looks like this takes the first article and clears the left float, leaves the left float in place for 2nd and 3rd, then clears the left float for the 4th, thus effectively starting a new row of articles.

    Now I understand how css does this. Theoretically I could edit the code to make it (5n+1) and that would give me 5 columns before starting a new row. Problem is, I can't find the code that designates first and fourth articles get the (3n+1) css applied to them.

    March 13, 2014 at 7:12 pm in reply to: Customize Genesis Featured Posts in Agency Pro #94785
    chamster
    Member

    It's very rough and preliminary but here it is:

    http://www.terracomwebdesign.com/websites/gs2014/

    The featured post widget I'm working on is on the home page only.

    Thus far I've only been developing it on my hard drive. Just uploaded it to the url above for demo purposes.

    March 13, 2014 at 5:33 pm in reply to: Customize Genesis Featured Posts in Agency Pro #94781
    chamster
    Member

    I've gotten it to display the featured posts and images in the proper size for my layout (via css). But still haven't found where in the code it says to make 3 columns per row. I want 5 columns. When I view page source I see <section id="featured-post-3" class="widget featured-content featuredpost">. But I can't find any css that says #featured-post-3 and I don't know if that has anything to do with the 3 columns anyway. Any ideas? Thanks!

    March 1, 2014 at 11:44 pm in reply to: Customize Genesis Featured Posts in Agency Pro #93054
    chamster
    Member

    Sounds good for creating the proper image sizes. But will that change the rows/columns to what I'm looking for? I noticed before that when I chose 150x150 images for the widget, the boxes were still 380x380, and there were still two rows and three columns.

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

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