• 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

Ozzy

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 - 21 through 40 (of 256 total)
← 1 2 3 … 11 12 13 →
  • Author
    Posts
  • December 21, 2013 at 9:35 am in reply to: Reposition Post Meta under Post Info #80618
    Ozzy
    Member

    yup, there were some hook changes in HTML5. all set now?


    Ozzy Rodriguez | Twitter | Google+

    December 21, 2013 at 9:28 am in reply to: Reposition Post Meta under Post Info #80615
    Ozzy
    Member

    it depends if you're using HTML5 or not.

    for non-HTML5 sites:

    Post Meta

    Post Info

    for HTML5 sites:

    Entry Header


    http://my.studiopress.com/snippets/entry-footer/


    Ozzy Rodriguez | Twitter | Google+

    December 19, 2013 at 11:48 am in reply to: Modern Portfolio [non-HTML5] Remove Filed Under #80248
    Ozzy
    Member

    Glad to be of assistance!


    Ozzy Rodriguez | Twitter | Google+

    December 19, 2013 at 11:42 am in reply to: Modern Portfolio [non-HTML5] Remove Filed Under #80246
    Ozzy
    Member

    oh, you're using the featured posts widget. it's not a function you change, but a setting in the widget.

    under Show Post Info, change what you have to [post_categories before=""]

    that should do the trick.


    Ozzy Rodriguez | Twitter | Google+

    December 19, 2013 at 11:30 am in reply to: Modern Portfolio [non-HTML5] Remove Filed Under #80241
    Ozzy
    Member

    try this: https://gist.github.com/ozzyrod/8043041

    it works as i tried it.


    Ozzy Rodriguez | Twitter | Google+

    December 19, 2013 at 11:10 am in reply to: Modern Portfolio [non-HTML5] Remove Filed Under #80236
    Ozzy
    Member

    something like this in the functions file should work:

    add_filter( 'genesis_post_meta', 'anitac_post_meta_filter' );
    function anitcac_post_meta_filter($post_meta) {
    if ( is_home() ) {
    $post_meta = '[post_categories before=""]';
    return $post_meta;
    }
    }


    Ozzy Rodriguez | Twitter | Google+

    December 3, 2013 at 12:09 am in reply to: How to Style Responsive Slider? #76769
    Ozzy
    Member

    i'm not seeing the issues your describing. were you able to fix them?


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 1:05 pm in reply to: Creating Pages #55838
    Ozzy
    Member

    yes and then use the Custom Menu Widget under Appearance > Widgets


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 12:19 pm in reply to: Upgrade now stops custom wrap #55831
    Ozzy
    Member

    if you didn't activate HTML5 support, then the what you had before should work just fine.

    it doesn't look like you have activated it, so the #wrap declaration should still work.


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 4:20 am in reply to: Move Archive Text Intro #55753
    Ozzy
    Member

    i'd try moving it to the genesis_after_content hook


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 4:09 am in reply to: Creating Pages #55751
    Ozzy
    Member

    create a menu with the pages you want to appear and then add a custom menu widget to that area and select the menu you just created.


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 4:07 am in reply to: Eleven40-Pro so much H1 tag #55750
    Ozzy
    Member

    what are you trying to do?

    please be a little more descriptive as to what it is you're trying to fix.


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 4:06 am in reply to: Move Archive Text Intro #55749
    Ozzy
    Member

    can you link to a specific page that you're trying to do this with?


    Ozzy Rodriguez | Twitter | Google+

    August 12, 2013 at 4:03 am in reply to: Upgrade now stops custom wrap #55748
    Ozzy
    Member

    try changing #wrap to .site-container and see if that works for you.


    Ozzy Rodriguez | Twitter | Google+

    July 23, 2013 at 10:02 pm in reply to: Child Theme style.css?ver=1.9.2 edits are not updating my content. #52178
    Ozzy
    Member

    are you using a caching plugin on your site?


    Ozzy Rodriguez | Twitter | Google+

    July 17, 2013 at 10:38 pm in reply to: Footer Creds CSS Question #51271
    Ozzy
    Member

    float: center doesn't do anything.

    you can try adding margin: 0 auto; to that rule and it'll center the .creds div.
    you can try text-align: center; if you'd like to center the text.
    if you'd like to then center the image, you should add a class of aligncenter to the image.

    hope that helps!


    Ozzy Rodriguez | Twitter | Google+

    July 17, 2013 at 10:44 am in reply to: Backwards Navigation Menu #51162
    Ozzy
    Member

    you're welcome!


    Ozzy Rodriguez | Twitter | Google+

    July 17, 2013 at 10:41 am in reply to: Image in Home Middle in Cre8tive Burst #51161
    Ozzy
    Member

    the default featured page widget doesn't allow for aligning the images to the center.

    the demo of the theme you're using uses an image size of 240x100, which makes the image appear centered. (you're using a 150x150 sized image)

    if you use an image that size, you should be good.


    Ozzy Rodriguez | Twitter | Google+

    July 17, 2013 at 10:14 am in reply to: Backwards Navigation Menu #51155
    Ozzy
    Member

    instead of floating the rules on line 285 to the right, float them to the left.

    .menu-primary li, .menu-secondary li, #header .menu li {
    float: left;
    }

    you'll need to add the following to the css:

    #nav {
    display: block;
    overflow: hidden;
    }
    
    #nav .wrap {
    float: right;
    }

    you'll have to re-arrange your menu to the correct order, but this will allow you to achieve the same look without having to add the menus in backwards.


    Ozzy Rodriguez | Twitter | Google+

    July 12, 2013 at 12:17 pm in reply to: Homepage Responsive Slider Issue #50408
    Ozzy
    Member

    some of the widths of items don't seem to match with the demo, which is why you're seeing a difference.

    have you changed any CSS?


    Ozzy Rodriguez | Twitter | Google+

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 256 total)
← 1 2 3 … 11 12 13 →
« 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