• 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 - 541 through 560 (of 584 total)
← 1 2 3 … 27 28 29 30 →
  • Author
    Posts
  • June 4, 2013 at 8:41 am in reply to: Styling wordpress formats in Prose #44012
    rfmeier
    Member

    Within the Chrome inspector, I applied the following css rules;

    /* for single page post format audio */
    .single .format-audio {
        background: #B0C4DE;
    }
    /* for global post format audio */
    .format-audio {
        background: #B0C4DE;
    }

    I noticed there are some .post background styling around line ~1156.  Make sure these are applied after that to avoid previous styles overriding the .format-aduio styling.

    Try that and let me know how it turns out.


    Ryan Meier – Twitter

    June 4, 2013 at 8:21 am in reply to: Education – remove border from primary sidebar widget #44009
    rfmeier
    Member

    Hello,

    From inspecting, around line ~1149 within your style.css file, remove the border-top and border-bottom style attributes.

    From

    .sidebar .widget {
    	background-color: #F8F8F8;
    	border-bottom: 1px solid #D6D6D6;
    	border-top: 3px solid #A5A5A5;
    	margin: 0 0 10px;
    	padding: 25px;
    }

    To

    .sidebar .widget {
    	background-color: #F8F8F8;
    	margin: 0 0 10px;
    	padding: 25px;
    }

    This will affect all sidebar widgets.  Other widgets (footer or header?) could possibly be affected too.  You would have to accommodate those if needed.

    Let me know how it turns out.


    Ryan Meier – Twitter

    June 4, 2013 at 7:55 am in reply to: How to Remove Link from Comment Date #44004
    rfmeier
    Member

    Unfortunately, I did not see any options or filters to adjust this within the source.  There may be another way to do this, but it would still require back-end code.  This code actually could be turned into a plugin, but that would require some more work.

    Someone feel free to chime in if they know a better solution.


    Ryan Meier – Twitter

    June 4, 2013 at 7:50 am in reply to: Styling wordpress formats in Prose #44002
    rfmeier
    Member

    Hello,

    Make sure your the css rules you are creating are not getting overrode by other rules.  Do you have a link where these rules are not being applied properly?


    Ryan Meier – Twitter

    June 4, 2013 at 7:41 am in reply to: How to Remove Link from Comment Date #44001
    rfmeier
    Member

    Hello,

    Looking at the Genesis source, as I don't have the Dynamik theme, a filter will need to be created to target a new custom comment callback.  The new custom comment callback is used to display each comment within the comment loop.  I created a gist that would go within your functions.php.  As I said before, I do not have the Dynamik theme, so I am not sure if that theme is using a custom comment callback of it's own.

    I hope this helps or points you in the right direction.


    Ryan Meier – Twitter

    June 3, 2013 at 6:08 pm in reply to: How to have a logo straddle the header and body (Agency Theme) #43934
    rfmeier
    Member

    Hello,

    Their logo is actually the background image of the site content.

    http://mc-junk.com/wp-content/themes/mcjunk/images/1024-back.png

    You could use absolute position to slide down a header to be overlap the site content.

    Hopefully this helps.


    Ryan Meier – Twitter

    June 3, 2013 at 2:53 pm in reply to: add Titles to blog posts #43924
    rfmeier
    Member

    I see.  Does the theme have a page_blog.php template file?

    Try adding the following;

    add_action(‘genesis_post_title’, ‘genesis_do_post_title’);

    Removing the action within the functions.php file is removing the title globally for all posts/pages.


    Ryan Meier – Twitter

    June 3, 2013 at 2:44 pm in reply to: Adorable Header Space Issue #43921
    rfmeier
    Member

    Hello,

    Upon inspecting your style.css file.  I found the site description was causing an issue.

    Within your style.css file, change;

    .header-image #description {
    	display: block;
    	overflow: hidden;
    }

    to

    .header-image #description {
    	display: block;
    	text-indent: -999em;
    }

    Let me know if it works.


    Ryan Meier – Twitter

    June 3, 2013 at 2:40 pm in reply to: add Titles to blog posts #43920
    rfmeier
    Member

    Cameron,

    That is preventing the post titles from displaying (most likely through out the entire site).  Commenting that out should make the post titles display again.

    Let me know the results.


    Ryan Meier – Twitter

    June 3, 2013 at 2:35 pm in reply to: add Titles to blog posts #43918
    rfmeier
    Member

    Cameron,

    Did the 'genesis_post_title' default callback get removed somewhere by chance?  Usually this would be done within the functions.php file or a Genesis targeted plugin.

    Let me know.


    Ryan Meier – Twitter

    June 3, 2013 at 1:05 pm in reply to: Style only one h2 element? Genesis Grid Loop #43897
    rfmeier
    Member

    You're welcome.  I am glad I could help.


    Ryan Meier – Twitter

    June 3, 2013 at 1:00 pm in reply to: Not getting the 404 page on "not found pages" in IE #43895
    rfmeier
    Member

    Hmmm, well browser page response cache is pretty much based on the url.  So going to a 404 page and appending a query parameter like ?asdfd=1231 should make the browser retrieve a new version.  Howver, I tried that and I am still getting the same result in IE.

    Do you have server side caching running?


    Ryan Meier – Twitter

    June 3, 2013 at 12:49 pm in reply to: non-wordpress html index page #43890
    rfmeier
    Member

    I have never had another site to mix with a WordPress site, I would look up their documentation or start here; http://codex.wordpress.org/Settings_General_Screen

    If you wanted to just create a Page in WordPress and set that as the homepage, that would work too.

    Within your WordPress Admin area create a page and name it 'Home' (You can add content later).

    Then go to Settings -> Reading.  Under the 'Front page displays' option, select 'A static page (select below)'.  Select the 'Home' page and save the setting.

    This will set that 'Home' page you created as the home page and not display the blog posts.

    I hope this will set you in the right direction.


    Ryan Meier – Twitter

    June 3, 2013 at 12:09 pm in reply to: How do i display my homepage like catagory? #43871
    rfmeier
    Member

    Oh-- My mistake.  I didn't scroll down far enough.  It looks like you have and grid loop on the home page.  That will have to be removed.

    I am not familiar with the Generate Child theme, but check to see if it will allow you to turn the grid off within the settings somewhere.  Otherwise you can check the home.php file and look for code similar to the following;

    <?php
    
    remove_action( 'genesis_loop', 'genesis_do_loop' );
    add_action( 'genesis_loop', 'custom_grid_loop_helper' );

    Comment out those lines of code and see if properly removes the grid loop.

    Let me know how it turns out.


    Ryan Meier – Twitter

    June 3, 2013 at 11:48 am in reply to: non-wordpress html index page #43866
    rfmeier
    Member

    Hello,

    Are you essentially trying to have a non-blog home page?


    Ryan Meier – Twitter

    June 3, 2013 at 11:44 am in reply to: Not getting the 404 page on "not found pages" in IE #43864
    rfmeier
    Member

    Hello,

    You probably don't need to turn off any/all of the site's plugins.  At contemplate which one could be a possible culprit.  Any custom .htaccess modifications in the works?


    Ryan Meier – Twitter

    June 3, 2013 at 11:41 am in reply to: eleven40 images inserted into page not responsive #43863
    rfmeier
    Member

    You're welcome.  Glad I could help.


    Ryan Meier – Twitter

    June 3, 2013 at 10:49 am in reply to: Style only one h2 element? Genesis Grid Loop #43853
    rfmeier
    Member

    Hello,

    I apologize, I made a mistake on my last post.  I didn't notice/read your previous post.

    I would append the css to the end of the style.css file.  It looks like it is being overrode by the #content .post h2 rule because the override is after it within the css.

    Let me know if this helps.


    Ryan Meier – Twitter

    June 3, 2013 at 10:39 am in reply to: Style only one h2 element? Genesis Grid Loop #43852
    rfmeier
    Member

    Try appending it to the end of the style.css file.  Or if you want, in the grid section if one exists.  It really shouldn't matter.


    Ryan Meier – Twitter

    June 3, 2013 at 10:16 am in reply to: Style only one h2 element? Genesis Grid Loop #43849
    rfmeier
    Member

    Hello,

    Try using this rul;

    #content .genesis-grid h2 {
    padding-left: 0;
    }

    I was able to change it live and chrome and it removed the padding for the grid titles.

    I hope this helps.


    Ryan Meier – Twitter

  • Author
    Posts
Viewing 20 posts - 541 through 560 (of 584 total)
← 1 2 3 … 27 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