• 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

timskye

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 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • January 11, 2014 at 6:33 pm in reply to: Remove Genesis Responsive Slider BG color #84685
    timskye
    Member

    Hi there

    If you only want it on the homepage try

    .home #content {
    background: none;
    }
    

    I tried it using Chrome developer tools and it works.

    Best

    Tim


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 11, 2014 at 6:25 pm in reply to: Mininum Pro – How to have front page with full posts and sidebar on front page? #84684
    timskye
    Member

    Hi

    You can get full posts and a sidebar on subsequent pages, but that theme is kinda set up to be like that on the front page for a reason.

    If you really want to change it, take a look in front-page.php, where it has

    if ( is_home() ) {
    
    		//* Remove entry meta in entry footer and Genesis loop
    		remove_action( 'genesis_loop', 'genesis_do_loop' );
    		
    		//* Add Genesis grid loop
    		add_action( 'genesis_loop', 'minimum_grid_loop_helper' );
    		
    		//* Remove entry footer functions
    		remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 );
    		remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    		remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
    		
    		//* Force full width content layout
    		add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    
    	}
    

    You can see the first part removes the usual loop and replaces it with the grid loop.
    The last line of the conditional 'add_filter' forces the layout to be full-width.

    So, you could remove/comment-out those entries and see what that does for you.

    I haven't tested it out but that should be fine. Let us know?

    Best

    Tim


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 11, 2014 at 6:11 pm in reply to: EPIK 1.3 – header font changes #84681
    timskye
    Member

    Hi

    Two tips first:
    1) I'd always recommend creating yourself a development copy of your site to make changes to rather than putting them into live, and then copy over the theme files once they are correct to your live server website.

    2) rather than edit the main style.css you could create yourself a custom.css and enqueue the style sheet so that it loads after the main one. e.g.

    /** Enqueue Genesis child theme style sheet at higher priority **/
    remove_action( 'genesis_meta', 'genesis_load_stylesheet' );
    add_action( 'wp_enqueue_scripts', 'genesis_enqueue_main_stylesheet', 15 );
    
    // Queue the custom style sheet
    add_action( 'wp_enqueue_scripts', 'thd_custom_stylesheet', 16 );
    function thd_custom_stylesheet() {
    wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom.css' );
    }
    

    That way you can override styles without changing the main sheet and forgetting what you've done!

    To answer your actual question, you can edit the menu font size in

    .genesis-nav-menu {
    
    }
    

    It's current set to be 0.8125rem. Line number 1987 of the main style.css stylesheet

    Best

    Tim


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 10, 2014 at 11:45 am in reply to: Tiling Background Image – Metro Pro #84446
    timskye
    Member

    Yes, in functions.php you will see a bunch of enqueue statements starting with

    //* Enqueue Backstretch script and prepare images for loading
    add_action( 'wp_enqueue_scripts', 'metro_enqueue_scripts' );
    function metro_enqueue_scripts() {
    

    just comment out the add_action() statement.
    Without taking a further look at it, I'm not sure whether you would need to do anything else to get the default background settings working. Try it?!


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:56 pm in reply to: Tiling Background Image – Metro Pro #84295
    timskye
    Member

    Hi, its not a caching issue.
    The background in Metro Pro uses 'Backstretch' to create a responsive fill the screen background.

    See the setup instructions
    http://my.studiopress.com/setup/metro-theme/
    Point 5
    "The Display Options settings for Position, Repeat, and Attachment are not important for this theme. These settings will be ignored."

    If you don't want this, you'll have to disengage the backstretch stuff, and make sure that 'normal' background setting is working.


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:48 pm in reply to: Mobile Responsive Features & CSS #84293
    timskye
    Member

    The styles that address specific mobile sizes you will find within the media queries at the bottom of the style sheet, however making a site 'responsive' usually involves the complete style sheet e.g. making use of width: 100% or using % rather than fixed widths.

    But don't worry - If you create a test site on your server, or on your local machine using something like Serverpress or MAMP you can monkey around all you like!


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:40 pm in reply to: Metro Pro WP Update #84291
    timskye
    Member

    Firstly, have you made a backup of your website: source code, wp-content and database? You should always do this before starting an upgrade.

    If you run it again, what happens?

    It seems to have taken a very long time, suggesting a lag on your connection or from WP servers. It can happen occasionally.


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:19 pm in reply to: Thicken Font on Minimum Menu Bar #84287
    timskye
    Member

    You are using Roboto which comes in several weights: 100, 300, 400,700

    You could include the additional thickness/weights you want in the declaration which is made in functions.php

    and then specifiy that weight for .genesis-nav-menu class.


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:09 pm in reply to: Some images appear on cell phone and others don't – Executive #84286
    timskye
    Member

    Hi,
    Which images don't show up? The two I saw on those pages shrink ok.


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

    January 9, 2014 at 8:07 pm in reply to: Header image doesn't look right on cell phone – Executive Theme #84285
    timskye
    Member

    You can either
    1) create relevant sized header images and then edit the style sheet for the relevant media queries
    or
    2) I see Nick the Geek has a genesis responsive header plugin (I havent used it myself)

    Best
    Tim


    I craft websites using WordPress, Genesis and Woocommerce.
    Designing, building & managing websites since 1995 | Follow | G+

  • Author
    Posts
Viewing 10 posts - 1 through 10 (of 10 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