• 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

Abland

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 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • December 18, 2015 at 3:32 pm in reply to: Genesis 2.2.5 Update Safe? #174288
    Abland
    Member

    @Summer

    http://genesistheme.com/changelog/

    September 17, 2015 at 3:01 pm in reply to: The grid.io (AI) system coming online later this year .. worried? #165927
    Abland
    Member

    My thoughts on grid.io is that it's been in development for quite some time and continues to go past projected release dates - yet folks continue to put their money into pre-purchases. I didn't see a whole slew of Google engineers in their team - maybe one person who was in on developing ad-sense. And Artificial Intelligence is sorely abused - a form that sends email and directs to a thank you page could also be deemed AI.

    What the grid represents is "easy" - and the people that want "easy" are more often than not high maintenance clients. I prefer the clients who are prepared to work for a living ... so the grid is skimming off the surface for me.

    The grid in essence only paints a pretty picture - most of the time. Developers who only build pretty sites will have competition with the grid. Developers who build practical sites won't.

    Keep up with learning the development skills - I've already had contracts to fix or better design some of the current "competitor" services' sites. And Genesis and WordPress are not going away - they're still the basis of very practical websites ... which are also often pretty 🙂

    April 8, 2015 at 7:09 pm in reply to: Make CSS changes only effect Desktop design? #147142
    Abland
    Member

    Hi, Beth,

    Wrap your style rules in a media query:

    @media all and (min-width: 1100px) {
    
    }

    The min width means the rules won't apply in screen widths below 1100px. Adjust according to your needs.

    @media all and (min-width: 1100px) {
        body .wrap {
             max-width: 1100px;
        }
    }
    April 8, 2015 at 7:03 pm in reply to: Best way to identify styles used #147141
    Abland
    Member

    Hi, Belinda,

    Strangely enough, I like the element inspector of Internet Explorer 11. It's quick and easy to find and copy what I need. Chrome and Firefox are good, too, but my personal preference for ease is IE.

    For inspecting and designing I like Microthemer: http://themeover.com/
    They have a trial version to test but you can double click and inspect elements and apply styles in a WYSIWYG interface. I'm not an affiliate - just a fan, same as with Genesis 🙂

    April 8, 2015 at 6:56 pm in reply to: How To Become A Genesis Developer? #147139
    Abland
    Member

    Hi, GeekDom,

    I found I learned best just by doing. I had my own practice site - still do 🙂 - for testing edits and figuring out solutions.

    Google is your friend because guaranteed anything you face has already been faced and posted somewhere.

    Get involved with the forums and try solving people's questions and posting answers. It's like visiting another country - just by being there and interacting before long you're speaking the language.

    Good luck!

    March 8, 2015 at 9:34 pm in reply to: Micro-site Added to Genesis #143744
    Abland
    Member

    Hi, chacha,

    This works very well: http://themeover.com/

    They have a free Lite version that can be tested - all styles are separate from the actual child theme. It uses the child theme but doesn't change it directly.

    March 7, 2015 at 10:08 pm in reply to: How to define a default featured image #143631
    Abland
    Member

    Hi, braddalton,

    Good point to notice - this was from one site.

    To anyone reading: where the image src is echoed adjust width and class to what's needed.

    March 7, 2015 at 9:35 pm in reply to: How to define a default featured image #143628
    Abland
    Member

    Hi, swc,

    This works for me in the theme functions.php

    //--> DEFAULT FEATURED IMAGE
    add_filter( 'genesis_pre_get_image', 'default_featured_image_when_not_set', 10, 1 );
    function default_featured_image_when_not_set( $post ) {
    if ( '' != get_the_post_thumbnail() ) :
        return $post;
    else: 
       echo '<img src="//path/to/image.png" width="150" class="alignleft" />';
    endif;
    }
    January 15, 2015 at 6:11 pm in reply to: How to remove comment dates #137607
    Abland
    Member

    How about this in your style rules?

    p.comment-meta .comment-time {
    display: none;
    }

    January 15, 2015 at 6:03 pm in reply to: Should I use DIVs? #137606
    Abland
    Member

    I've had success using Advanced Custom Fields: https://wordpress.org/plugins/advanced-custom-fields/

    I build the page with divs then enter the form values where they're to display. Client just edits by changing form fields, and they do not touch the editing window.

    January 8, 2015 at 3:56 pm in reply to: Site-Title shows on hover logo #136423
    Abland
    Member

    Hi, Remco,

    Maybe make the rule important, too:

    color: transparent !important;

    December 27, 2014 at 11:47 pm in reply to: Some help with Beautiful Pro #135444
    Abland
    Member

    Hi, ckclarke,

    Try this:

    h1.site-title {
    white-space: nowrap;
    overflow: visible; /* you might not need the overflow rule */
    }
    .site-title a, .site-title a:visited {
    color: #39556f !important;
    font-weight: 500; /* 600 or 700 for bolder */
    }

    December 23, 2014 at 11:54 pm in reply to: PowerPress Audio Player – How To Center #135230
    Abland
    Member

    Hi, Kim,

    Get assertive 🙂

    .mejs-container {
    margin: 0 auto !important;
    }
    p.powerpress_links powerpress_links_m4a {
    text-align: center !important;
    }

    December 23, 2014 at 11:47 pm in reply to: Outreach Pro – Show background through header #135229
    Abland
    Member

    Hi, Neb,

    Add to your stylesheet:

    .site-header {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    }

    December 10, 2014 at 6:43 am in reply to: Genesis Fatal Error #134154
    Abland
    Member

    Hi, rbrown08,

    Do you have an active social media plugin on your site? If so, try disabling it to see if the error stops.

    August 4, 2014 at 7:47 pm in reply to: Lifestyle Pro – Eliminate whitespace between header and primary navigation #117100
    Abland
    Member

    Glad you got it - I wasn't thinking screen width at first - David was 🙂

    August 4, 2014 at 7:16 pm in reply to: Lifestyle Pro – Eliminate whitespace between header and primary navigation #117087
    Abland
    Member

    You're welcome - you may need to reduce the padding-left and padding-right on .site-inner - in IE I just noticed the sidebar drops below the content area ... maybe 3.2em or a bit less

    August 4, 2014 at 6:51 pm in reply to: Lifestyle Pro – Eliminate whitespace between header and primary navigation #117076
    Abland
    Member

    Hi, gadfly1974,

    Try this:

    .site-container {
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .site-inner {
        padding-left: 3.6em;
        padding-right: 3.6em;
    }

    If needed use !important;

    August 4, 2014 at 5:47 pm in reply to: Directing to different parts on a page? #117065
    Abland
    Member

    Hi, keithkorneluk,

    This works nicely: https://wordpress.org/plugins/page-scroll-to-id/

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