• 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

Landon

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 53 total)
1 2 3 →
  • Author
    Posts
  • April 15, 2015 at 7:24 am in reply to: METRO PRO THEME Feedback – Tip to fix Category Page layout #147994
    Landon
    Member

    As jengabbard said, you did a great job matching the site to the content. Looks really nice.

    January 9, 2015 at 6:34 am in reply to: Local Government Site built using Genesis #136465
    Landon
    Member

    You did a really nice job with this!

    Landon

    August 13, 2014 at 7:19 am in reply to: Upload Custom Layout to Child Theme #118552
    Landon
    Member

    Yes, that's basically what I do now through Safari's web inspector. Just been trying to find a faster way to go from a design/mockup to a WordPress theme. As a 1 person business, anywhere I can shave off time is helpful!

    Thanks for the response!

    Landon

    August 13, 2014 at 6:54 am in reply to: Upload Custom Layout to Child Theme #118540
    Landon
    Member

    Kellylise I am curious if anyone has created a site in webflow (or macaw or pinegrow or whatever) and managed to integrate WordPress/Genesis. I found a tutorial on integrating with Ultimatum theme but I'd rather stick with Genesis.

    lifefullofjules did you get anywhere with webflow?

    July 2, 2014 at 1:33 pm in reply to: First client job (all on my own) #112693
    Landon
    Member

    The original link is dead now but I can't update that post. Now located at http://yogaatconnies.com if anyone is looking for it.

    April 28, 2014 at 3:13 pm in reply to: First client job (all on my own) #102806
    Landon
    Member

    Thanks! Outreach Pro http://my.studiopress.com/themes/outreach/

    April 23, 2014 at 8:17 am in reply to: Site Redesign with Genesis News: Suggestions and Feedback Please #102037
    Landon
    Member

    I like the minimal, clean look! Might want to draw more attention to the posts, either a different color for the post title or featured image which it looks like New Pro supports.

    Nice work!

    April 9, 2014 at 6:25 am in reply to: Genesis Sample Child Theme #99323
    Landon
    Member

    That's what I was looking for but there is no Custom Header in my functions.php.

    <?php
    //* Start the engine
    include_once( get_template_directory() . '/lib/init.php' );
    
    //* Child theme (do not remove)
    define( 'CHILD_THEME_NAME', 'Genesis Sample Theme' );
    define( 'CHILD_THEME_URL', 'http://www.studiopress.com/' );
    define( 'CHILD_THEME_VERSION', '2.0.1' );
    
    //* Enqueue Lato Google font
    add_action( 'wp_enqueue_scripts', 'genesis_sample_google_fonts' );
    function genesis_sample_google_fonts() {
    	wp_enqueue_style( 'google-font-lato', '//fonts.googleapis.com/css?family=Lato:300,700', array(), CHILD_THEME_VERSION );
    }
    
    //* Add HTML5 markup structure
    add_theme_support( 'html5' );
    
    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );
    
    //* Add support for custom background
    add_theme_support( 'custom-background' );
    
    //* Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    
     
    //* Add new featured image sizes
    add_image_size( 'home-bottom', 150, 100, TRUE );
    add_image_size( 'home-top', 400, 200, TRUE );
    
    /**
     * Register and Enqueue Header Navigation Menu Script
     * 
     * @author Brad Potter
     * 
     * @link http://www.bradpotter.com
     */
    function gst_headermenu_script() {
      	
    	wp_register_script( 'header-menu', get_stylesheet_directory_uri() . '/js/headermenu.js', array('jquery'), '1.0.0', false );
    	wp_enqueue_script( 'header-menu' );
    
     }
    add_action('wp_enqueue_scripts', 'gst_headermenu_script');
    
    /** Register widget areas */
     
    genesis_register_sidebar( array(
    	'id'				=> 'cta-1',
    	'name'			=> __( 'Call to Action #1', 'mp' ),
    	'description'	=> __( 'This is the call to action section.', 'mp' ),
    ) );
    
    add_action( 'genesis_before_footer', 'mp_cta_genesis' );
    
    /**
     * Add CTA widget support for site. If widget not active, don't display
     *
     */
    function mp_cta_genesis() {
     
      // Don't display the CTA on the home page, since it's built into the MP theme
      if ( is_home() ) {
    		return;
    	}
     
     
     
      // If it's a page with ID 101 or 102 or any page within my Portfolio CPT
      // Display CTA #2
    	elseif ( is_page( array(8) ) || ('portfolio' == get_post_type() ) ) {
    		genesis_widget_area( 'cta-1', array(
    			'before' => '<div id="cta"><div class="wrap"><div class="right"',
    			'after' => '</div></div></div>',
    		) );
     
    	}
    }	
    
    //* Add support for structural wraps
    add_theme_support( 'genesis-structural-wraps', array(
    	'header',
    	'nav',
    	'subnav',
    	'site-inner',
    	'footer-widgets',
    	'footer'
    ) );
    April 7, 2014 at 6:35 am in reply to: Host Freezone and Genesis – not working #98848
    Landon
    Member

    Is this the site that is an issue http://www.bookmarklee.co.uk/ ? It appears to work fine for me, viewed with OS X Safari 7.0.3.

    April 3, 2014 at 7:50 am in reply to: Entry title color changes when I click on a blog post #98259
    Landon
    Member

    You're welcome!

    April 3, 2014 at 6:51 am in reply to: Entry title color changes when I click on a blog post #98250
    Landon
    Member

    In your style.css, add:

    h1.entry-title {
    	color: #009bc2;
    }

    Your .entry-title will now match .entry-title a.

    April 2, 2014 at 3:07 pm in reply to: Stumped: Using Genesis as Child Theme #98136
    Landon
    Member

    Been there many times!

    April 2, 2014 at 2:31 pm in reply to: Stumped: Using Genesis as Child Theme #98130
    Landon
    Member

    Ok, that's what I mean by use the Sample Child Theme as your child. That is what is used in the demo. You can download it from your downloads area along with Genesis.

    April 2, 2014 at 1:25 pm in reply to: Outreach Pro – Mobile Menu #98122
    Landon
    Member

    Subscribing to this because that thumbs up icon was driving me crazy!

    April 2, 2014 at 7:32 am in reply to: customize individual menu item #98060
    Landon
    Member

    Just a thought, when you say added to the bottom of css file, did you add it below the Media Queries section? Make sure it is above the Media Queries section of the css or it will only work on smaller screens. Have a link to the site?

    April 2, 2014 at 7:10 am in reply to: Stumped: Using Genesis as Child Theme #98055
    Landon
    Member

    You'd still want to create a child theme, don't touch the genesis folder. You can either start with the StudioPress Sample Child Theme as a base or there are a few other 3rd party starters out there. You could also start with an empty child theme and build it from scratch.

    All you need to get started is Genesis framework installed, a child folder and a style.css in that folder with something like this which will associate the child to genesis:

    /*
    	Theme Name: Genesis Sample
    	Description: This is the sample theme created for the Genesis Framework.
    	Author: StudioPress
    	Author URI: http://www.studiopress.com/
    	Version: 2.0.1
     
    	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
     
    	Template: genesis
    	Template Version: 2.0.1
     
    	License: GPL-2.0+
    	License URI: http://www.opensource.org/licenses/gpl-license.php
    */
    April 1, 2014 at 3:04 pm in reply to: I just went live with my first Genesis site #97968
    Landon
    Member

    Nice Job!

    March 28, 2014 at 8:37 pm in reply to: Personal Blog Using Beautiful Pro #97217
    Landon
    Member

    Very nice!

    March 26, 2014 at 6:41 am in reply to: First client job (all on my own) #96702
    Landon
    Member

    Apparently!

    March 25, 2014 at 4:54 pm in reply to: First client job (all on my own) #96659
    Landon
    Member

    Thanks!

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 53 total)
1 2 3 →

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