• 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

rfmeier

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 584 total)
1 2 3 … 28 29 30 →
  • Author
    Posts
  • June 28, 2016 at 1:49 pm in reply to: Show woocommerce product page as full-width on mobile theme Foodie Pro #188469
    rfmeier
    Member

    senordeer,

    There is a css rule for 767px

    @media only screen and (max-width: 767px) {
    
    	.five-sixths,
    	.four-sixths,
    	.one-fourth,
    	.one-half,
    	.one-sixth,
    	.one-third,
    	.three-fourths,
    	.three-sixths,
    	.two-fourths,
    	.two-sixths,
    	.two-thirds,
    	.first {
    		clear: none;
    		margin-left: 2.564102564102564%;
    		width: 48.717948717948715%;
    	}

    I added the following after line 2737 and it removed the margin. You can adjust left and right margins as needed.

    .full-width-content .five-sixths,
    .full-width-content .four-sixths,
    .full-width-content .one-fourth,
    .full-width-content .one-half,
    .full-width-content .one-sixth,
    .full-width-content .one-third,
    .full-width-content .three-fourths,
    .full-width-content .three-sixths,
    .full-width-content .two-fourths,
    .full-width-content .two-sixths,
    .full-width-content .two-thirds,
    .full-width-content .first {
        clear: none;
        margin-left: 0;
        padding-right: 0;
        width: 100%;
    }

    Ryan Meier – Twitter

    June 28, 2016 at 12:51 pm in reply to: Show woocommerce product page as full-width on mobile theme Foodie Pro #188463
    rfmeier
    Member

    senordeer,

    The single product page is actually displaying a 'singlular' post type, so Genesis doesn't really treat it as a page layout. You can trick it with the snippet below in your theme's functions.php file.

    https://gist.github.com/fd958478a89849f85fafc3ee95f9f1a0.git


    Ryan Meier – Twitter

    June 28, 2016 at 9:16 am in reply to: Altitude Pro theme sizing issues in wide screen #188449
    rfmeier
    Member

    t-west,

    Just looking at the css/structure of the site, the soliloquy are has a max-width of 1600px. This could be part of the issue. It really sounds like there is a still width limitation somewhere.

    For issue #2, since you set a width of 100%, there is now a need for padding --or margin-- to prevent the images from being flush with the side of the screen.

    You could try this for issue #2

    .front-page-2 {
    	margin-left: 30px;
    	margin-right: 30px;
    }

    You can adjust as needed, just be make sure to test that it does not screw anything up while on smaller/mobile screen sizes.


    Ryan Meier – Twitter

    December 27, 2015 at 11:18 pm in reply to: Get Tags for Array of Pages #174918
    rfmeier
    Member

    carrieoke13,

    If I am correctly understanding what you are attempting to do, you can iterate through each page object and grab the associated terms with get_the_terms() and then use get_term_link() to generate the link.

    Let me know if I am not understanding the question correctly.

    Good luck!


    Ryan Meier – Twitter

    January 8, 2015 at 8:42 pm in reply to: Problem with margins or padding to big: #136439
    rfmeier
    Member

    Hello,

    What is your thoughts on a reasonable size? When you say before and after the widgets; Are you referring to above and below?

    Using the display: table; is a little odd, I don't see that being used as much. I did notice that the "image sections" have an inline height of 613px.

    Let me know, I can take another look.


    Ryan Meier – Twitter

    January 7, 2015 at 4:01 pm in reply to: Foodie Recipe Index Question #136313
    rfmeier
    Member

    thefrugalmom,

    I was confused at first, but I found this within your style.css file;

    /* line 816 */
    .has-post-thumbnail .entry-content a {
        display: center;
        text-align: block;
    }

    This is actually incorrect. display: center; should be display: block;. But this would put a link on it's own line as you were describing, which is not what you want.

    The other rule is also incorrect text-align: block; should be text-align: center; which would center the link text, but it wouldn't change much within a paragraph.

    You would be safe to remove the block of css code above.

    http://thefrugalmom.net/valentines-day-gift-for-teachers/


    Ryan Meier – Twitter

    January 5, 2015 at 8:50 am in reply to: Can no longer get into theme customization #136108
    rfmeier
    Member

    If you disable the StudioPress theme, does the issue go away? If it does not, try toggling plugins.


    Ryan Meier – Twitter

    January 4, 2015 at 8:49 pm in reply to: Featured Post Widget and Incorrect Paragraph Breaks #136080
    rfmeier
    Member

    You are welcome. Glad I could help!


    Ryan Meier – Twitter

    January 4, 2015 at 3:55 pm in reply to: Can no longer get into theme customization #136064
    rfmeier
    Member

    vlramirez,

    WordPress moved away from the header image uploader in a recent path. They instead have you upload the header and background images through the Admin > Appearance > Customize menu.

    Are you able to access that menu?


    Ryan Meier – Twitter

    January 4, 2015 at 3:51 pm in reply to: Creating a custom feed with excerpt & image #136063
    rfmeier
    Member

    Veken,

    Since this is a core WordPress function, you would probably get a better response on the WordPress forums.

    https://wordpress.org/support/


    Ryan Meier – Twitter

    January 4, 2015 at 3:44 pm in reply to: How do I create a minimum size for Genesis Featured Post Widgets in Lifestyle Pr #136062
    rfmeier
    Member

    Alyssaavant,

    You will need to add some css to your style.css file.

    After .home-bottom-right around line 1201 within your style.css file, append the following;

    .home-bottom-left .featured-content .entry,
    .home-bottom-right .featured-content .entry{
    	min-height: 500px;
    }

    You can adjust the 500px height as needed.

    There is also a text widget that has a bottom margin that will need to be removed to allow them to line up correctly.


    Ryan Meier – Twitter

    January 4, 2015 at 3:32 pm in reply to: Featured Post Widget and Incorrect Paragraph Breaks #136061
    rfmeier
    Member

    djfit99,

    There markup is actually correct. It is the paragraph styling that is incorrect.

    Around line 1247, alter your style.css file as follows;

    .lifestyle-pro-home .content .featuredpost p {
    	margin: 0;
    }
    .lifestyle-pro-home .content .featuredpost p {
    	margin: 0;
    	margin-bottom: 26px;
    }

    Ryan Meier – Twitter

    January 4, 2015 at 3:26 pm in reply to: Javscript snippet for Parallax Pro needs tinkering, but unsure how to implement #136060
    rfmeier
    Member

    Jason,

    You are welcome! Good luck.


    Ryan Meier – Twitter

    January 4, 2015 at 12:10 pm in reply to: Javscript snippet for Parallax Pro needs tinkering, but unsure how to implement #136041
    rfmeier
    Member

    Jason,

    Here is the full script. I wasn't able to test it, but I you can test it and alter as needed.

    https://gist.github.com/rfmeier/c421a5bf60ec886a38a1


    Ryan Meier – Twitter

    January 4, 2015 at 12:01 pm in reply to: Javscript snippet for Parallax Pro needs tinkering, but unsure how to implement #136040
    rfmeier
    Member

    Jason,

    You can go off the following. The first if-statement checks the window size on initial load. The second listens for a window resize event;

    // check initial window size
    if( window.innerWidth > 687 ) {
    
    	// hide or show the menu based on the window's initial size
    
    }
    
    // listen for browser resize
    $( window ).on( 'resize', function() {
    	
    	if( window.innerWidth > 687 ) {
    		// hide or show the menu based on window size after resize
    	}
    
    });

    Ryan Meier – Twitter

    January 4, 2015 at 11:56 am in reply to: Big gap underneath my social media icons #136039
    rfmeier
    Member

    alliechynna,

    I am guessing the alignleft css class is floating the menu left, which is creating float issues for elements after the menu.

    If you add something like the following to clear the floats, it could solve the issue.

    <div style="clear: both;float: none;"></div>


    Ryan Meier – Twitter

    January 4, 2015 at 11:53 am in reply to: Big white space between title and menu before header image loads in prose theme #136038
    rfmeier
    Member

    Munguti,

    Are you able to remove the header image? This is what I can see as the header image from the developer tools; http://www.christiantruthcenter.com/wp-content/themes/prose/images/header.png


    Ryan Meier – Twitter

    January 4, 2015 at 11:48 am in reply to: Simple Edits – Removing Entra Meta on One Blog Post, But Not Others #136037
    rfmeier
    Member

    swstudio,

    Since Genesis Simple Edits alters the entry content globally, this will require a php hook within the theme's function.php file. If you want to avoid editing the php directly, you can try using the Genesis Simple Hooks plugin and add the following to the genesis_before_entry hook.

    <?php
    if( ! is_home() ){
        return;
    }
    
    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    ?>

    Remember to check Execute PHP on this hook?


    Ryan Meier – Twitter

    January 4, 2015 at 11:28 am in reply to: Modern Portfolio Pro multiple blog pages #136036
    rfmeier
    Member

    Good to hear! Good luck!


    Ryan Meier – Twitter

    January 4, 2015 at 11:25 am in reply to: Foodie Recipe Index Question #136035
    rfmeier
    Member

    thefrugalmom,

    On line 783 of your style.css file change text-align: center; to text-align: left;.


    Ryan Meier – Twitter

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 584 total)
1 2 3 … 28 29 30 →

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