• 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

Krista

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 68 total)
← 1 2 3 4 →
  • Author
    Posts
  • December 27, 2014 at 9:58 pm in reply to: Help Removing Terrible Padding on Enterprise Pro Theme #135437
    Krista
    Member

    I don't think you need to do much. Wouldn't you just have to adjust the 40px padding on line 891:

    .featured-content .entry-content {
    padding: 40px;
    }

    If you want to reduce padding more for the entry header on line 880:

    .featured-content .entry-header {
    border-bottom: 1px solid #ececec;
    margin: 0;
    padding: 30px 40px;
    }

    I don't think adjusting these will have an impact on your mobile view at all.

    December 26, 2014 at 1:58 pm in reply to: Executive Pro – Display slider at max-width #135353
    Krista
    Member

    Could you give a link to the website? Easier to help you that way 🙂

    December 26, 2014 at 1:56 pm in reply to: Magazine Pro – Adjust Header Height/Width #135352
    Krista
    Member

    In the functions.php file look for this code:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'default-text-color' => '000000',
    'header-selector' => '.site-title a',
    'header-text' => false,
    'height' => 90,
    'width' => 380,
    ) );

    Change it to:

    //* Add support for custom header
    add_theme_support( 'custom-header', array(
    'default-text-color' => '000000',
    'header-selector' => '.site-title a',
    'header-text' => false,
    'height' => 116,
    'width' => 223,
    ) );

    then in the style.css change line 1258 from:

    .header-image .site-title a {
    background-position: center !important;
    background-size: contain !important;
    float: left;
    display: block;
    min-height: 90px;
    text-indent: -9999px;
    width: 100%;
    }

    To:

    .header-image .site-title a {
    background-position: center !important;
    background-size: contain !important;
    float: left;
    display: block;
    min-height: 116px;
    text-indent: -9999px;
    width: 100%;
    }

    December 26, 2014 at 1:53 pm in reply to: How To about header image (News Pro Theme) #135349
    Krista
    Member

    Here is a great article:

    News Pro Theme Full Width Header Image

    December 19, 2014 at 10:03 am in reply to: HELP! Lifestyle Pro – Different Background on Home Page Only #134901
    Krista
    Member

    I agree with the above. Lifestyle Pro has a custom body class for the front page so you could also use body.lifestyle-pro-home

    December 19, 2014 at 9:56 am in reply to: Custom header problems with Lifestyle Theme #134900
    Krista
    Member

    Do you have a url I can take a peak at?

    December 14, 2014 at 11:53 pm in reply to: Huge White Space Surrounding Slider #134556
    Krista
    Member

    Outreach Pro uses the Genesis Responsive Slider plugin: https://wordpress.org/plugins/genesis-responsive-slider/

    It looks like you are using Genesis Slider plugin. If you switch it up to the right plugin it will fix your problem.

    Take care,

    November 28, 2014 at 11:00 pm in reply to: I am Using The Lifestyle theme and I would like to make the Header Full Width #133180
    Krista
    Member

    As always Sridhar has a great tutorial for this:

    http://sridharkatakam.com/add-wide-header-lifestyle-pro/

    Good luck!

    November 14, 2014 at 10:48 am in reply to: Lifestyle Pro — Where's the space b/n the sidebars and footer? #131525
    Krista
    Member

    You need to make the make the priority lower than the footer widgets. For example:

    add_action( 'genesis_before_footer', 'test_widget_section', 5 );
    function test_widget_section() {

    genesis_widget_area( 'test-widget', array(
    'before' => '<div class="testing"><div class="wrap">',
    'after' => '</div></div>',
    ) );
    }

    I used 5 which hooked it in before the footer widgets.

    I hope this helps!

    October 15, 2014 at 4:28 pm in reply to: Minimum Pro Large background image height question #127927
    Krista
    Member

    Hey there,

    The image is a background image, and the height is controlled by the margin-top line 485:

    .minimum .site-tagline {
    margin-top: 600px;
    }

    Take care!

    August 18, 2014 at 6:31 pm in reply to: Hiring someone to make the theme work #119638
    Krista
    Member

    I am also available too if needed.

    [email protected]

    Krista

    August 18, 2014 at 12:33 am in reply to: Do you work on your live site?? #119468
    Krista
    Member

    I used to use MAMP (for Mac) and recently switched to Desktop Server. They have a sweet little feature to deploy your local site to your live site once it's finished. If you have trouble, and you are a premium member they will do it for you or teach you how. Very much worth it, and the customer service is wonderful!

    You could alternatively, use Susan's suggestion for working on a live sub-domain.

    Krista

    August 18, 2014 at 12:30 am in reply to: Agency Pro: Transparency for the Home Bottom, Footer 1, 2, 3 #119467
    Krista
    Member

    Hi Donald,

    Change the opacity value to whatever you want, mine is just an example. See this article to learn more about opacity values:

    http://www.w3schools.com/cssref/css3_pr_opacity.asp

    Try this:

    line: 1330 in your stylesheet

    .home-bottom{
    opacity: .5;
    }

    line: 1600 in your stylesheet

    .footer-widgets{
    opacity: .5;
    }

    Krista

    August 18, 2014 at 12:21 am in reply to: Agency Pro – Connect with us: Simple Social Icons #119466
    Krista
    Member

    Hi Donald,

    It is possible but you'll have to dig into some code if you are comfortable! Sridhar has a fantastic tutorial.

    http://sridharkatakam.com/replace-reorder-add-new-icons-simple-social-icons/

    Hope this helps!

    Krista

    August 16, 2014 at 6:51 pm in reply to: Styling Gravity From Submit Button #119291
    Krista
    Member

    Hi Scott,

    to line 1509 of Stylesheet

    div.gform_footer input.button{
    background: #0449cb
    color: #fff;
    font-weight: normal;
    border: 1px solid #0449CB;
    }

    Hope this helps!

    Krista

    August 16, 2014 at 6:44 pm in reply to: Blog Not Showing Correctly #119287
    Krista
    Member

    Here is help with the Read More link.

    Customize Read More Tag, Link & Excerpt

    As for the blog excerpts, try looking at Bob's tutorial on your theme under Content Archives:

    http://bobwp.com/streamline-pro-child-theme-tutorial/

    If this isn't what you want then a little bit of custom coding will be needed, or possibly tweaking the CSS

    Not sure about the title not showing up.

    August 15, 2014 at 5:45 pm in reply to: Sub-Menu Opacity #119144
    Krista
    Member

    Do you have a link possibly? I would be happy to take a look for you

    August 15, 2014 at 5:44 pm in reply to: Copy Calendar from Another Theme #119143
    Krista
    Member

    Hi,

    The calendar can be added from the available widgets, and then be styled with CSS to your preferences.

    Take care,

    Krista

    August 15, 2014 at 5:31 pm in reply to: Change News theme background in editor #119138
    Krista
    Member

    If you can link to your website I would be happy to take a look.

    Krista

    July 21, 2014 at 9:52 am in reply to: Add extra fields to the comment form #115198
    Krista
    Member

    This might be helpful to you.

    http://www.mattsaffiliatejourney.com/site-building/customizing-wordpress-comments-form-genesis-2-0/

    🙂

    Krista

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