• 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

rfmeier

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 - 61 through 80 (of 584 total)
← 1 2 3 4 5 … 28 29 30 →
  • Author
    Posts
  • June 16, 2014 at 11:45 am in reply to: Maximum Width and Height of Images in Winning Agent Pro Theme #110000
    rfmeier
    Member

    I quickly created a gist for solution two. I was not able to test it fully as I do not have the theme, but the logic is there.

    https://gist.github.com/rfmeier/f867d725f717b66ee671


    Ryan Meier – Twitter

    June 16, 2014 at 11:23 am in reply to: Maximum Width and Height of Images in Winning Agent Pro Theme #109999
    rfmeier
    Member

    Hello,

    The AgentPress Listings plugin is using the genesis_get_image() function to display the image background. Which is asking for the image size 'properies'. The function uses wp_get_attachment_image() to retrieve the image from WordPress. As far as I could tell (I did a quick grep search on the plugin directory), the AgentPress Listings plugin does not register the image size with WordPress (see add_image_size).

    If WordPress cannot find the size given (as a string), it will return the original image. This should be why you are getting back the large (original) image.

    There are a few ways to fix this.

    1. Add the image size to your functions, then install and run Regenerate Thumbnails to add your existing photos to the new image size.

    2. Hook the 'genesis_pre_get_image' filter and adjust the size parameter to medium (or an already existing image size) from 'properties.'

    3. There are probably more ways to do this.

    I hope this helps.


    Ryan Meier – Twitter

    June 16, 2014 at 9:06 am in reply to: Need a second set of eyes – quick fix #109986
    rfmeier
    Member

    Hello,

    It looks like the <tbody> element has been assigned a border-bottom.

    /* style.css line ~446 */
    tbody {
    	border-bottom: 1px solid #ddd;
    }

    Try setting that value to none.


    Ryan Meier – Twitter

    June 16, 2014 at 8:23 am in reply to: IE Compatibility View issue #109976
    rfmeier
    Member

    Hello,

    I used to have this issue at my old job quite often where Microsoft was a the majority use case. Compatibility mode forces IE to be rendered in IE7 (also uses the IE 7 javascript rendering engine...ouch) , so that compatibility tag will not change anything.

    I would instead use <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> to force the browser to use to most recent rendering engine available and hope the majority of those users are using at least IE 8.

    I hope this helps.

    P.S. I am not sure how early that meta tag should be injected into the <header> element. In theory it should be fine where it is, but this is Internet Explorer we are talking about...


    Ryan Meier – Twitter

    June 16, 2014 at 8:07 am in reply to: Shortcode with custom loop in page affecting search results #109973
    rfmeier
    Member

    Hello,

    I don't have a whole lot of time to thoroughly look over the code until later this evening. I can point out that adding and removing actions/filters within a shortcode will provide mixed results and should be avoided. The shortcode is executed when the WordPress loop calls the_content() which may or may not be after or before the action or filter you are trying to add/remove.

    With your custom shortcode; Are you just trying to change the output result for your custom post type? That can be done a number of ways in Genesis and WordPress.


    Ryan Meier – Twitter

    June 16, 2014 at 7:13 am in reply to: Cut the white spaces #109970
    rfmeier
    Member

    G,

    The white space above your bread crumbs can be adjusted within your style.css file. Here is an example;

    /* style.css line ~419 */
    .site-inner {
        clear: both;
        padding-top: 40px; /* reduce this value to maybe 10px */ 
    }

    To adjust the white-space above and below your header, you will also have to adjust your style.css file.

    /* style.css line ~929 */
    .site-header .wrap {
        border-bottom: 2px solid #222;
        padding: 30px 0 /* reduce the 30px to your liking */
    }

    I hope this helps or gets your started.


    Ryan Meier – Twitter

    June 16, 2014 at 6:49 am in reply to: "What Other's Are Saying" #109968
    rfmeier
    Member

    mtshasta,

    I inspected the output in Chrome. The "What Other's Are Saying" is coming from a widget. And by the css classes associated with that widget, it appears to be the Featured Content/Posts widget. May want to check with your widgets.

    Good luck!


    Ryan Meier – Twitter

    June 10, 2014 at 4:07 pm in reply to: Change home featured widget area background to none #108830
    rfmeier
    Member

    You are welcome. I am glad I could help.


    Ryan Meier – Twitter

    June 10, 2014 at 3:08 pm in reply to: Change home featured widget area background to none #108824
    rfmeier
    Member

    Hello,

    You actually can target the #content element and set the background to transparent. You just need to specify the rule for the home page only.

    /* append after the original .home background color declaration */
    .home #content{
        background: transparent;
    }

    I hope this helps.


    Ryan Meier – Twitter

    June 10, 2014 at 2:59 pm in reply to: How to Center a Widget Title in Prose Theme #108821
    rfmeier
    Member

    Hello,

    You will need to adjust your style.css file and add text-align: center;. Example below from your style.css file.

    /* find this in your style.css file */
    .widget-area h4 {
        color: #222222;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: bold;
        border-bottom: 1px dotted #aaaaaa;
        text-transform: none;
        text-align: center; /* centering the text */
    }

    That will center the title text on all your sidebar widgets.


    Ryan Meier – Twitter

    June 7, 2014 at 12:38 pm in reply to: Hide the icon Standard (Post Formats), in the Pages #108456
    rfmeier
    Member

    @macrunner

    I forgot about that already. The logic for can just be adjusted to the code that removed the link. Here is the updated code to the gist that will remove the link. You can disregard the original code I originally gave you in this thread.

    https://gist.github.com/rfmeier/8cbe9895612a9dff5a95


    Ryan Meier – Twitter

    June 7, 2014 at 12:35 pm in reply to: Embedding gists on the forums #108455
    rfmeier
    Member

    Brad,

    That has always worked for me in the past. Yet the last few days it just treats the clone url as a link. Has this happened to you before?


    Ryan Meier – Twitter

    June 7, 2014 at 8:01 am in reply to: Change sizes of content boxes #108443
    rfmeier
    Member

    Hello,

    Have you tried the tutorial found here http://my.studiopress.com/tutorials/content-column-classes/ that will create column classes? That should take care of your issue.


    Ryan Meier – Twitter

    June 7, 2014 at 7:52 am in reply to: Hide the icon Standard (Post Formats), in the Pages #108440
    rfmeier
    Member

    Hello,

    There are a few ways to do this. I would do this by replacing the default Genesis callback for the appropriate action and replacing it with a custom callback function. Within my custom function, I would then call the original Genesis callback function (that will display the post format icon) if and only if a certain criteria is met. I included an example below;

    https://gist.github.com/rfmeier/d87c2fd0352b428d20a9


    Ryan Meier – Twitter

    June 6, 2014 at 7:04 pm in reply to: Remove space between entry title and date #108414
    rfmeier
    Member

    You are welcome. Good luck with the site!


    Ryan Meier – Twitter

    June 6, 2014 at 4:04 pm in reply to: Scribble & Jetpack Carousel #108396
    rfmeier
    Member

    Second my last post. It doesn't even look like the Jetpack carousel code is being initialized.


    Ryan Meier – Twitter

    June 6, 2014 at 4:03 pm in reply to: Scribble & Jetpack Carousel #108395
    rfmeier
    Member

    Hello,

    I am seeing an error within the scroll.js file on line 19 located at scribble/js/scroll.js

    This could be indirectly causing problems with the carousel code.


    Ryan Meier – Twitter

    June 6, 2014 at 3:43 pm in reply to: Custom post type archive loading some posts outside of content div #108393
    rfmeier
    Member

    Hello,

    It looks like the float: right; on the .content wrapper element may be causing some issues. I was able to correct it with a change in the style.css;

    .content {
    	background: #fff url(images/pattern-light.png);
    	background-size: 10px 10px;
    	float: none; /* changed to none from right */
    	padding: 0;
    	width: 760px;
    }

    Hope this helps.

    Was this page meant to have a sidebar? I started thinking about why the main content would have a float: right property assigned.


    Ryan Meier – Twitter

    June 6, 2014 at 3:33 pm in reply to: Remove space between entry title and date #108390
    rfmeier
    Member

    Hello again,

    This is also within your style.css file.

    /* style.css line ~686 */
    .entry-title {
    	font-size: 35px;
    	font-size: 2.2rem;
    	line-height: 1;
            font-weight: normal;
    	margin-bottom: 5px; /* adjust bottom margin */
    	margin-bottom: 0.5rem; /* adjust bottom margin */
    }

    Hope this helps.


    Ryan Meier – Twitter

    June 6, 2014 at 2:40 pm in reply to: Certering pricing Tables #108387
    rfmeier
    Member

    You are very welcome and nice to meet you too, Rob! Good luck with the site.


    Ryan Meier – Twitter

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 584 total)
← 1 2 3 4 5 … 28 29 30 →
« 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