• 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

Debra Scott

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 117 total)
← 1 2 3 4 5 6 →
  • Author
    Posts
  • August 4, 2013 at 8:09 am in reply to: Style first post differently #54095
    Debra Scott
    Member

    if you code your homepage as such

    <?php
    
    
    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'pretty_home_loop_helper' );
    
    global $more;
    if($post == $posts[0]) $more = 0;
    else $more = 1;
    the_content();
    
    /**
     * Add widget support for homepage. If no widgets active, display the default loop.
     *
     */
    function pretty_home_loop_helper() {
    
    
    
    		if ( is_active_sidebar( 'home' ) ) {
    			echo '<div id="home">';
    			dynamic_sidebar( 'home' );
    			echo '</div><!-- end #home-->';
    		}
    
    	
    	
    	else {
    		genesis_standard_loop();
    	}
    	
    }
    
    genesis();
    

    then register it in functions.php

    genesis_register_sidebar( array(
        'id'        => 'home',
        'name'      => 'HOME',
        'description'   => 'This is a sidebar that shows on homepage.',
    ) );

    Now pull two featured post widgets into your new sidebar. The first will show 1 post full content

    the second will show say 4 posts and offset by 1 post and also show full content.

    this will now give you the layout you want.

    For the styling go to view source on your page find the widget info for the first full post widget.

    mine was #featured-post-6 so in my style.css I would put

    #featured-post-6 {
    background: #eee;
    }

    and so on..


    need help with your business or personal website? Contact me at Fat Cat Designs

    August 2, 2013 at 4:43 pm in reply to: Important Notice about StudioPress Pro Plus #53826
    Debra Scott
    Member

    yes you can update to 3.6 and it shouldnt break your theme.

    You can read how to update your theme and about the new hooks here
    http://www.studiopress.com/news/genesis-2-0-resources.htm


    need help with your business or personal website? Contact me at Fat Cat Designs

    August 1, 2013 at 6:39 am in reply to: Having some css trouble – simple fix? #53534
    Debra Scott
    Member

    Great!


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 31, 2013 at 8:54 am in reply to: Adding an icon to each menu entry in the Executive Theme #53389
    Debra Scott
    Member

    this tutorial will give you a starting point
    http://wpmu.org/wordpress-custom-menu-icons/


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 31, 2013 at 6:19 am in reply to: Highlighting author's comments #53368
    Debra Scott
    Member

    You're very welcome!


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 31, 2013 at 6:13 am in reply to: How to recreate this page #53367
    Debra Scott
    Member

    the inov8tive theme will give you something similar to the last one.

    http://www.innov8tive.eightcrazydesigns.com/category/side-dish/


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 30, 2013 at 7:44 pm in reply to: Having some css trouble – simple fix? #53311
    Debra Scott
    Member

    could you provide a link to the post/page in question?


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 30, 2013 at 7:33 pm in reply to: Important Notice about StudioPress Pro Plus #53310
    Debra Scott
    Member

    Yes you are!


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 30, 2013 at 7:24 pm in reply to: Highlighting author's comments #53309
    Debra Scott
    Member

    try this

    .comment-author-admin.bypostauthor,
    .comment .bypostauthor {
    background: #FFE9D6;
    border-style: dotted;
    border-width: 1px;
    border-color: #FFBC82;
    }


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 30, 2013 at 6:24 am in reply to: Highlighting author's comments #53192
    Debra Scott
    Member

    can you show me an example?


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 29, 2013 at 1:00 pm in reply to: Highlighting author's comments #53093
    Debra Scott
    Member

    p targets the paragraph ie what you posted


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 29, 2013 at 6:41 am in reply to: Highlighting author's comments #53050
    Debra Scott
    Member

    try this

    .comment .bypostauthor p {
    color: #fff;
    }
    .comment .bypostauthor {
    background: #000 !important;
    color: #fff;
    }


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 29, 2013 at 6:20 am in reply to: Push footer to the bottom of page #53048
    Debra Scott
    Member

    You could also try this tut on sticky footer
    http://www.jonbellah.com/2012/12/genesis-sticky-footer/


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 26, 2013 at 8:11 pm in reply to: Soliloquy #52716
    Debra Scott
    Member

    it looks like you can add the slider via shortcode in which case you can do this,

    put this code in functions.php

    // Use shortcodes in text widgets.
    add_filter('widget_text', 'do_shortcode');
    

    then add your slider shortcode to a text widget in the featured widget section of your theme


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 24, 2013 at 2:10 pm in reply to: Blissful meta data and signature issues #52310
    Debra Scott
    Member

    change the 9 to an 8 or 7 or whatever puts it where you want.


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 24, 2013 at 11:32 am in reply to: How to get rid of the opaque pictures #52267
    Debra Scott
    Member

    style.css


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 24, 2013 at 4:01 am in reply to: How to get rid of the opaque pictures #52197
    Debra Scott
    Member

    find this and remove the opacity

    #blog img,
    #portfolio img {
    	margin-bottom: 24px;
    	margin-bottom: 1.5rem;
    	opacity: 0.8;
    }
    
    #blog img:hover,
    #portfolio img:hover {
    	opacity: 1;
    }

    need help with your business or personal website? Contact me at Fat Cat Designs

    July 24, 2013 at 3:55 am in reply to: loaded scripts in child-theme #52196
    Debra Scott
    Member

    wp-includes and wp-admin are core WordPress folders. You never edit core.


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 23, 2013 at 6:29 am in reply to: [Adult Content] How do I get the pages "after" the home page to display photos? #52021
    Debra Scott
    Member

    if you remove home.php or rename it home1.php then your posts will show in full with image on both home page and subsequent pages.


    need help with your business or personal website? Contact me at Fat Cat Designs

    July 23, 2013 at 6:20 am in reply to: English backend – german fontend #52017
    Debra Scott
    Member

    you might have more luck with this question in this forum
    http://www.studiopress.community/forum/internationalization/


    need help with your business or personal website? Contact me at Fat Cat Designs

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 117 total)
← 1 2 3 4 5 6 →
« 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