• 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

SoZo

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 - 41 through 60 (of 1,612 total)
← 1 2 3 4 … 79 80 81 →
  • Author
    Posts
  • February 4, 2013 at 1:50 pm in reply to: Customizing eNews and Updates widget on Focus theme #17958
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 11:05 am in reply to: Genesis SEO on Enterprise #17915
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 11:04 am in reply to: move post meta above post #17914
    SoZo
    Member

    You don't add the add_action twice. You only need

    remove_action(‘genesis_after_post_content’, ‘genesis_post_meta’);
    add_action(‘genesis_after_post_title’, ‘genesis_post_meta, 5 ’);

    And you'll need to play with the priority number. But there is another issue with the home page since the post meta isn't showing anywhere.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:51 am in reply to: Metro with background image breaks my slider #17908
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:43 am in reply to: Good examples of Resume websites? #17903
    SoZo
    Member

    There are some good ones here


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:42 am in reply to: Subnav on Template #17902
    SoZo
    Member

    resolved


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:28 am in reply to: Add Optin above Widgetized Footer #17899
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:25 am in reply to: AgentPress – want full width header and footer #17895
    SoZo
    Member

    You would need to add the gradient to either the body or #wrap

    If you want the footer widgets to span the viewport you need to remove the width from #footer-widgets then add a width and auto left/right margins to #footer-widgets .wrap.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:20 am in reply to: Metro with background image breaks my slider #17894
    SoZo
    Member

    No, I just tested a gallery and it worked fine. Most likely a plugin conflict.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:12 am in reply to: put the generate box in the minimum theme #17893
    SoZo
    Member

    If you need another sidebar see this.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:12 am in reply to: Adding line break between "Categories" and "Tags" at bottom of post? #17892
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:11 am in reply to: Word Wrap Image #17891
    SoZo
    Member

    You're welcome 🙂

    Have you picked up a copy of "WordPress for Dummies"? It's a good introduction to WP.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:09 am in reply to: Add Optin above Widgetized Footer #17890
    SoZo
    Member

    Ya, you threw HTML into PHP. You need to break out of PHP first. See the difference between this and what I posted above

    add_action('genesis_before_footer', 'add_div', 5 );
    function add_div() { ?>
    THE STUFF YOU WANT TO OUTPUT
    <?php }

    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:03 am in reply to: Agent Press Search Sidebar Not Working #17885
    SoZo
    Member

    resolved


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:02 am in reply to: image in widget #17884
    SoZo
    Member

    You can add an image tag to a text widget. Text widgets accept standard HTML.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 10:01 am in reply to: Metro Theme Sidebar #17883
    SoZo
    Member

    Go into home.php and edit the layout filter

    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );

    to

    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );

    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 9:59 am in reply to: Word Wrap Image #17880
    SoZo
    Member

    Click the image in the post editor and you'll see two icons in the upper left corner of the image. Click the fist one, which will bring up the image properties dialogue. Choose either align left or align right.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 9:56 am in reply to: Shifting Primary Navigation Bar to right #17875
    SoZo
    Member

    You'd need to break out the .menu-primary ul selector out of this group

    .menu-primary ul,
    .menu-secondary ul,
    #header .menu ul {
    	float: left;
    	width: 100%;
    }

    Into its own rule

    .menu-primary ul {
        width: auto;
        float: right;
    }

    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 9:50 am in reply to: Add Optin above Widgetized Footer #17872
    SoZo
    Member

    The intro to hooks shows what a function looks like and you can learn about the add_action parameters here.

    You'd want something like

    add_action('genesis_before_footer', 'add_div', 5 );
    function add_div() {
    THE STUFF YOU WANT TO OUTPUT
    }

    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 9:36 am in reply to: Customizing eNews and Updates widget on Focus theme #17869
    SoZo
    Member

    It would be easier to style your form than it would be to change how the widget functions. Use Firebug and you can determine all the style rules being applied.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

  • Author
    Posts
Viewing 20 posts - 41 through 60 (of 1,612 total)
← 1 2 3 4 … 79 80 81 →
« 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