• 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

andystitt829

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 21 total)
1 2 →
  • Author
    Posts
  • May 15, 2016 at 7:27 am in reply to: Add code to head? #185649
    andystitt829
    Member

    Hi, from your WordPress admin screen, go to Genesis -> Theme Settings, and then in the Header and Footer Scripts section, copy and paste the code into the Header Scripts box.

    Andy


    Andy Stitt
    Website | Twitter

    May 13, 2016 at 6:28 pm in reply to: How to set a Featured Image for Child Themes, such as Digital Pro #185599
    andystitt829
    Member

    To set the default image for Facebook, it's best to do so via Facebook Open Graph. The easiest way to do this is by installing the Yoast SEO plugin if you don't have it installed already and then choose your desired image in the Facebook settings. Here's an article detailing how to do it: https://yoast.com/social-media-optimization-with-wordpress-seo-by-yoast/.

    Hope this helps.

    Andy


    Andy Stitt
    Website | Twitter

    May 13, 2016 at 6:17 pm in reply to: Education Pro – Primary Navigation Area #185596
    andystitt829
    Member

    To activate the area above the header where the primary navigation area is, you would have to register a widget area for it. You can try first registering the widget area itself:

    genesis_register_sidebar( array(
    	'id'          => 'tagline',
    	'name'        => __( 'Tagline', 'education' ),
    	'description' => __( 'This is the tagline area above the header.', 'education' ),
    ) );

    Then hook it in above the header:

    function education_tagline_widget() {
    	genesis_widget_area( 'tagline', array(
    		'before' => '<div class="tagline widget-area">',
    		'after'  => '</div>',
    	) );
    }
    add_action('genesis_before_header', 'education_tagline_widget');

    You would then have to style it in your style.css file to make it look nice, but that's how you can accomplish it.

    Hope that helps. The code worked for me on a demo site that I spun up.


    Andy Stitt
    Website | Twitter

    March 28, 2015 at 7:09 am in reply to: Remove header avtar in Expose pro theme #145935
    andystitt829
    Member

    Below the code that starts on line 555 of style.css, try adding this:

    .site-avatar img {
    	display: none;
    }

    Andy Stitt
    Website | Twitter

    March 1, 2015 at 11:56 am in reply to: How Can I Remove The Category And Tags List? #142750
    andystitt829
    Member

    Perhaps try this:

    //* Customize the entry meta in the entry footer (requires HTML5 theme support)
    add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
    function sp_post_meta_filter($post_meta) {
    	$post_meta = '';
    	return $post_meta;
    }

    I'm not completely sure if it's good practice to leave an empty set of quotes like that, but it might get the job done. The filter could at least get rid of the category and sub-category. I think the action hook that removes the entry footer could also be removing the horizontal divider.

    Andy


    Andy Stitt
    Website | Twitter

    March 1, 2015 at 8:25 am in reply to: Make Crop bigger for Site header #142728
    andystitt829
    Member

    If you go into the functions.php file inside of Education Pro, you should be able to change this block of code:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    	'width'           => 300,
    	'height'          => 100,
    	'header-selector' => '.site-title a',
    	'header-text'     => false,
    ) );

    You can change the width to 500 and the height to 150.

    If the overall header is still too small height-wise, you can go to line 502 in the style.css file and add a min-height property:

    .site-inner,
    .wrap {
    	margin: 0 auto;
    	max-width: 1140px;
    	min-height: 150px;
    }

    Try that and see if it works. It takes a little tinkering to get it right.

    Andy


    Andy Stitt
    Website | Twitter

    March 1, 2015 at 8:13 am in reply to: How Can I Remove The Category And Tags List? #142727
    andystitt829
    Member

    These code snippets could help you: http://my.studiopress.com/snippets/entry-footer/. If you're not that comfortable with playing with code in the functions.php file, you could download the Simple Edits plugin: https://wordpress.org/plugins/genesis-simple-edits/.

    Either way, the Entry Footer should be what you are targeting.

    Andy


    Andy Stitt
    Website | Twitter

    March 1, 2015 at 8:04 am in reply to: Podcasting Suggestions #142725
    andystitt829
    Member

    I use PowerPress, the Blubrry plugin. It's great and easy to use, especially with using it to set up your actual podcast RSS feed. As far as the player, it's simple and works.

    I never even heard of SPP, and maybe that's because I haven't listened to Smart Passive Income lately. It looks great. Not something I should spend that money on right now, but looks great nonetheless.

    Andy


    Andy Stitt
    Website | Twitter

    February 26, 2015 at 10:58 am in reply to: Secondary navigation menu parallax: change color? #142385
    andystitt829
    Member

    Hi Mary,

    I found the problem. In line 2107 of style.css, you have:

    .genesis-nav-menu > .menu-item > a {
    	color: #000;
    }

    This makes your navigation menu link text black in both the top navigation and the one at the bottom where you're having the problem.

    This should be a simple fix. Right below the code I previously showed you, add this:

    .site-footer .nav-secondary li a {
    	color: #fff;
    }

    I tested it on Firefox Developer Edition, and it worked. Plus, it keeps the parallax blue hover property.

    Please let me know if it works for you.

    On a side note, your name looks familiar. I think I came across you on Twitter once upon a time when I was more active in the NPTech community.

    Andy


    Andy Stitt
    Website | Twitter

    February 26, 2015 at 10:03 am in reply to: Eleven40 – Read More Excerpt has no link #142376
    andystitt829
    Member

    Martina, try looking at the snippets here: http://my.studiopress.com/snippets/post-excerpts/. I think the second one will be what you need since this is a category archive page.

    Andy


    Andy Stitt
    Website | Twitter

    February 26, 2015 at 9:43 am in reply to: Problems installing Altitude #142372
    andystitt829
    Member

    Anna, you might want to check the theme setup instructions to get it to look the way you want it to look. When you install a child theme, it usually doesn't look like the demo site right off the bat. It may take the installation of certain widgets among other things.

    If you go to http://my.studiopress.com, log in, and click "Theme Setup" by Altitude Pro and Manhattan, it should give you further instructions.

    Let me know if this helps.

    Andy


    Andy Stitt
    Website | Twitter

    February 5, 2015 at 11:41 am in reply to: Displaying tagline in Altitude Pro theme? #139821
    andystitt829
    Member

    Hi Matt,

    If you really want the tagline underneath the title, you have to go into the style.css file in the Altitude Pro Theme folder under wp-content/themes.

    If you haven't touched the code yet, then it should be on or around line 992. Change the code from this:

    .site-description {
    	display: block;
    	height: 0;
    	margin-bottom: 0;
    	text-indent: -9999px;
    }

    To this:

    .site-description {
    	display: block;
    	height: 0;
    	margin-bottom: 10px;
    }

    The "text-indent" property is what was sending it off the page.

    You'll need to play with the font size, color, etc. of the .site-description property to make sure that it looks good.

    From a design perspective, you might want to consider leaving it alone and simply typing your tagline into the first section of the website below the header and navigation.

    Let me know if you have any questions or if that's not working for you.

    Andy


    Andy Stitt
    Website | Twitter

    January 10, 2015 at 9:09 am in reply to: How to edit size of fonts and website of magazine pro theme #136873
    andystitt829
    Member

    Hi lagadoo,

    The http://www.natalls.co.uk looks like it has a mostly unaltered version of the Magazine Pro theme, so I'll use that as a reference. I couldn't tell from your post, but is this your website?

    Are you comfortable with changing CSS? If so, then go into the style.css file of the Magazine Pro theme and go to the following section:

    /* Titles
    --------------------------------------------- */
    
    .entry-title {
    	font-size: 36px;
    	line-height: 1;
    }
    
    .entry-title a,
    .sidebar .widget-title a {
    	color: #222;
    	font-weight: 500;
    }

    These properties apply to the blog post titles. You can adjust their font size using the "font-size" property and the boldness using the "font-weight" property.

    If you want to change the font size of the paragraph/body text, simply go here:

    /* Typographical Elements
    --------------------------------------------- */
    
    body {
    	background-color: #fff;
    	color: #222;
    	font-family: 'Roboto', sans-serif;
    	font-size: 16px;
    	font-weight: 300;
    	line-height: 1.625;
    }

    The font-size and font-weight properties can be used again here.
    For http://www.thecultureist.com/, the entry title is only 24px in comparison to the 36px on the other site. The font weight is only 300 in comparison to the 500. The paragraph/body text is exactly the same at a size of 16px and weight of 300.

    Does this help?

    Andy


    Andy Stitt
    Website | Twitter

    December 7, 2014 at 9:24 pm in reply to: audio player on home page of Minimum-pro #133942
    andystitt829
    Member

    One more idea. If this doesn't work, then I'm fresh out of suggestions.

    I think I have actually managed to accomplish what you're looking to do on my site (lucky accident). This would involve a small extra step in your workflow, but it depends on how much having the media player visible in excerpts is worth it to you.

    Under Settings -> Reading, switch from showing the summary to full text. Then, whenever you do a blog post, at the point that you want the excerpt to cut off, manually insert the read more link by the clicking the "Insert Read More tag" button in the post editor.

    I think PowerPress activates the media player only when "Full text" is activated in the reading setting. However, by inserting the read more link, the entries will still be excerpts on the page with the list of posts.

    I hope that isn't too much more additional work. I don't even know where to begin if you would rather accomplish this programatically.

    Andy


    Andy Stitt
    Website | Twitter

    December 6, 2014 at 7:41 pm in reply to: audio player on home page of Minimum-pro #133859
    andystitt829
    Member

    It looks to me like you're using the PowerPress plugin. Is that correct? If so, try going into Settings, then the Media Appearance tab, and then check the box next to "Display media / links in: WordPress Excerpts (e.g. search results)".

    Please let me know if that works.

    Andy


    Andy Stitt
    Website | Twitter

    November 26, 2014 at 12:49 pm in reply to: Bare Bones boxes & layout #132889
    andystitt829
    Member

    For most Genesis child themes, you'll only have to change the CSS and occasionally work in functions.php to add content areas here and there. Aside from the minimal HTML markup that you may need there, otherwise, it'll all be there for you and you won't have to work extensively with coding your own markup. The markup generated by Genesis is good, semantic HTML5.

    As for something barebones and unstyled, many people use the free Genesis Sample Theme and customize it to their needs. If you search on Github, there are many other starter themes that are more barebones.

    If you need more advanced controls made easy for your client, such as a UI system to change fonts, you might want to consider the Dynamik Website Builder. I believe it has an annual fee, but it gives you and the client more control over the look and feel of the site without having to code. Though since you are a front end dev, you can also easily put in custom CSS.

    Hope this helps. If not, then please let me know.

    Andy


    Andy Stitt
    Website | Twitter

    November 26, 2014 at 12:36 pm in reply to: Newbie question – how to create website without making it live #132885
    andystitt829
    Member

    Hi Suzanne,

    There are several ways to accomplish this. The easiest way is to download a WordPress plugin that allows you to password-protect the website so that no one without the password can see it. The most commonly used practice is to create a staging site under a sub-domain (password-protected is best here as well), so instead of your site being at http://www.yoursite.com, it'll be at something like staging.yoursite.com.

    There are lots of tutorials out there about how to create a staging site. I know I've seen one at wpbeginner.com.

    Andy


    Andy Stitt
    Website | Twitter

    November 10, 2014 at 1:27 pm in reply to: Different Colour on Select Pages? #131096
    andystitt829
    Member

    I don't know how to move that drop down to the page/post editor, but whenever you create a new page or post, under Layout Settings, you can assign a custom body class. Perhaps you can set those classes and then enter in the style attributes for each class in your style.css child theme file.

    Andy


    Andy Stitt
    Website | Twitter

    October 27, 2014 at 9:15 pm in reply to: CSS – Outreach Pro – Help, again! #129518
    andystitt829
    Member

    genwrock, you figured out how to say that way more succinctly than I did!


    Andy Stitt
    Website | Twitter

    October 27, 2014 at 9:13 pm in reply to: CSS – Outreach Pro – Help, again! #129517
    andystitt829
    Member

    Hi John,

    I looked through your CSS, and I didn't see any property set for .site-footer p. When I set that property in Firebug, it turned the bottom text white. So, you can add this bit of CSS in:

    .outreach-pro-blue .site-footer p {
    color: #fff;
    }

    The footer background color is set in this cluster of CSS that you provided:

    .outreach-pro-blue,
    .outreach-pro-blue .footer-widgets,
    .outreach-pro-blue .site-footer {
    background-color: #1E6DAD;
    }

    The .outreach-pro-blue .site-footer element sets your background color.

    If you want a different color than the #1E6DAD, you can remove .outreach-pro-blue .site-footer from that cluster and set its color separately. Try this:

    outreach-pro-blue,
    .outreach-pro-blue .footer-widgets {
    background-color: #1E6DAD;
    }
    
    .outreach-pro-blue .site-footer {
    background-color: #000;
    }

    I set the background color to #000 just as an example. Once you know the hex value of the color that you want to use, plug it in there.

    Did this work for you?

    Andy


    Andy Stitt
    Website | Twitter

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

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