• 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

Mike Imken

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 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • December 29, 2014 at 10:21 am in reply to: read more link on excerpt #135551
    Mike Imken
    Member

    @gswartz -- are you using custom post excerpts? I was, and similarly found these solutions were not working.

    I posted this in another Studiopress thread after it solved it:

    This is an old question, but I was looking for a solution as well and no one has seemed to answer it properly here on the forums.

    The issue is with the custom post excerpts. These solutions don't work for it in my experience.

    This however solved it, courtesy of WPBeaches. Just change the themeprefix and adjust the CSS using the "more-link" class.

    //Read More Button For Excerpt
    function themeprefix_excerpt_read_more_link( $output ) {
    	global $post;
    	return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>';
    }
    add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    December 29, 2014 at 10:18 am in reply to: Read more link to post excerpts? #135550
    Mike Imken
    Member

    This is an old question, but I was looking for a solution as well and no one has seemed to answer it properly here on the forums.

    The issue is with the custom post excerpts. These solutions don't work for it in my experience.

    This however solved it, courtesy of WPBeaches. Just change the themeprefix and adjust the CSS using the "more-link" class.

    //Read More Button For Excerpt
    function themeprefix_excerpt_read_more_link( $output ) {
    	global $post;
    	return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>';
    }
    add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    April 4, 2014 at 4:43 pm in reply to: Adding a Share button in post info section of Balance #98535
    Mike Imken
    Member

    Not sure if this is the best way, but it seems to work in Chrome at least:

    .addthis_toolbox {
    	position: relative;
    	left: -150px;
    	top:-20px;
    }

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    April 4, 2014 at 8:43 am in reply to: Mindstream post-format-image Background Color #98452
    Mike Imken
    Member

    I see! I didn't read your request very carefully did I? Yes, my initial suggestion would change the entire background for each post format.

    To change the specific post format image backgrounds, you could add this:

    .format-video .post-format-image {
    background-color: #ffffc0;
    }
    
    .format-aside .post-format-image {
    background-color: #dadeff;
    }
    

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    April 3, 2014 at 3:36 pm in reply to: Change Page Margins? #98351
    Mike Imken
    Member

    Hi.

    Looks like you have padding on posts, but not pages.

    You could try adding this (change values as desired) to your CSS in the Content section :

    #content .page {
    	padding: 0 0 0 20px;
    }

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    April 3, 2014 at 3:17 pm in reply to: Mindstream post-format-image Background Color #98348
    Mike Imken
    Member

    One option seems to be adding css for the format classes. Though you want some padding as well.

    .format-video {
    background-color: #ffffc0;
    padding: 10px;
    }
    
    .format-aside {
    background-color: #dadeff;
    padding: 10px
    }

    And you may want to remove the border-bottom on the .post class. Or perhaps change the color to a another shade of your specific post format color. Might be a nice effect.


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    April 2, 2014 at 3:13 pm in reply to: How to control individual page width? #98137
    Mike Imken
    Member

    That page is missing <div class="wrap"> which sets the width and margins.

    Not sure why unless you changed a template?

    Regardless, if you can find where to add that back in, or add the following to your CSS file:

    .content-sidebar-wrap {
    margin: 0 auto;
    max-width: 1140px;
    }

    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 18, 2013 at 1:02 pm in reply to: AgentPress – Welcome Section Formating Help #63257
    Mike Imken
    Member

    Hi Shelley,

    It's in the Images portion of your CSS

    It was using img.aligncenter, but now it appears to be img.alignnone.

    Either way they both have a 10px margin on the bottom:`
    img.centered,
    .aligncenter {
    display: block;
    margin: 0 auto 10px;
    }

    img.alignnone {
    display: inline;
    margin: 0 0 10px;
    }

    img.alignleft {
    display: inline;
    margin: 0 15px 10px 0;
    }

    img.alignright {
    display: inline;
    margin: 0 0 10px 15px;
    }`

    You could create a new class for the welcome images specifically or adjust the appropriate one above, if you don't need that 10px bottom margin on other images on the site.

    Also, this is probably inserted with a Text widget in the "Welcome" section? If so, just put the image link without a class defined. I think that might work as well:

    <img src="http://www.kreservices.com/wp-content/uploads/2013/08/Welcome_graphic_914x150px.png" width="914" height="150" alt="Find out how much my home is worth...">

    Thanks for the info on the search widget!


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 17, 2013 at 11:27 pm in reply to: Change font color on Genesis Responsive slider excerpt #63130
    Mike Imken
    Member

    You have several things trying to affect the headlines. This CSS code will cause some issues:

    #home-slider h1,
    h2,
    h2 a,
    h2 a:visited,
    h3,
    h4,
    h5,
    h6 {
    	color: #5EA699 !important;
    	font-family: 'PT Sans', sans-serif;
    	font-weight: 900;
    	margin: 0 0 10px;
    	line-height: 1.25;
    }

    This is making the #home-slider h1 color change (which is irrelevant, because there is no #home-slider h1 in the code) and is overriding all headline selectors, so that all headlines will be #5EA699.

    If you want just the title font in the slider to be white, change the CSS to this. But note it will be "invisible" due to the white background. This will also revert other headlines to black based on other headline CSS settings in your file:

    #home-slider h2 a {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.25;
    }

    If you want the other headlines to be the teal/green color, you will address those in the Headlines section.


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 17, 2013 at 10:56 pm in reply to: Ordering Listings in Agentpress #63126
    Mike Imken
    Member

    Hi,

    I can help with the green box (called the Listing Box) and changing its color.

    Find this code in your CSS file:

    .listing-text {
    background: #4b8308;
    clear: both;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    position: absolute;
    right: 5px;
    top: 5px;
    }

    And change the background property to a different value.

    As far as the price, I've just started with creating a client's site with AgentPress so I'm not familiar yet with how it returns results. I have seen Carrie Dils propose an idea on how to fix that, but she says it may not work properly in all cases: http://www.carriedils.com/sort-agentpress-listings-by-price/


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 17, 2013 at 10:39 pm in reply to: Genesis Responsive Slider Text Not Aligned Properly #63125
    Mike Imken
    Member

    Hi.

    Looks like you posted this question twice. I submitted one possible solution on the other one here


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 17, 2013 at 10:34 pm in reply to: Genesis Responsive Slider Ghost Text Box Appears on Image #63123
    Mike Imken
    Member

    Hi.

    The font for your headline in the slider is too large. On some of those it actually goes beyond the border.

    One option is adding this to your CSS file:

    .home-featured-left h2 a {font-size: 32px;}


    Marketer – Designer – Developer
    http://www.TargetPublic.com

    September 17, 2013 at 10:15 pm in reply to: AgentPress – Welcome Section Formating Help #63121
    Mike Imken
    Member

    @ThreeTreesStudio

    That image has the image class "aligncenter" which has a 10px bottom margin. Remove that and it will fit.

    By the way, I'm just setting up our first Agentpress site -- how did you create your Listings Search widget so that it has text fields, e.g. Min and Max price, etc.?


    Marketer – Designer – Developer
    http://www.TargetPublic.com

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