• 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

itzsnider

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 - 41 through 60 (of 85 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • October 13, 2015 at 12:15 pm in reply to: Background Image – Inside Pages #168057
    itzsnider
    Participant

    Try this - http://chriseggleston.com/set-a-different-background-image-for-each-page-in-a-genesis-child-theme/

    October 13, 2015 at 12:14 pm in reply to: Theme still showing old theme home page #168056
    itzsnider
    Participant

    There are some themes that require the front page to be set specifically.

    If you want to PM me login info I can take a look around. Looking from the outside won't help much at this point.

    Outside of cacheing I would need to see behind the scenes.

    Hope you get it fixed.

    October 13, 2015 at 12:12 pm in reply to: Footer widget width css is not working #168055
    itzsnider
    Participant

    Is this still an issue?

    It looks like the footer is working fine for me.

    Also, in the future, it's not the best option to utilize Jetpack for CSS tweaks. I would move all of those to the child theme style.css file and go from there.

    Then disable Jetpacks functionality around CSS editing.

    my two cents

    October 13, 2015 at 12:09 pm in reply to: Theme still showing old theme home page #168052
    itzsnider
    Participant

    Are these your defaults?

    http://glui.me/?i=a9d0vyaurv4kqgt/2015-10-13_at_2.08_PM.png/

    This is under Settings -> Reading

    October 13, 2015 at 12:05 pm in reply to: Author website using Altitude Pro + Genesis Author Pro Plugin #168051
    itzsnider
    Participant

    Not too shabby, I am digging the purple!

    October 13, 2015 at 12:02 pm in reply to: Getting THOUSANDS of update notification #168050
    itzsnider
    Participant

    I would follow up with your host. It seems their SMTP server is generating an issue.

    This won't be a Genesis issue.

    October 13, 2015 at 11:56 am in reply to: Modern Portfolio Pro Theme Edit Navigation Menu #168048
    itzsnider
    Participant

    Shikha,

    The first ask is to make your menu item on one line. This drives me nuts as well.

    What you can do is utilize the developer tools of your browser and either
    1. make that menu "wider" or
    2. make the font-size or font-spacing smaller

    For the second task that again is something you can utilize your dev tools to grab.

    Once you have located the correct CSS properties, you can align them as needed.

    Hope that helps a tad.

    October 13, 2015 at 11:53 am in reply to: Theme still showing old theme home page #168047
    itzsnider
    Participant

    Laura,

    It looks like this has been resolved, can you validate?

    If not the obvious question would be is it activated? Under Appearance -> Themes -> Hover over your theme and click Activate.

    Hope that helps

    October 13, 2015 at 11:51 am in reply to: Adding Two Custom Stylesheets #168046
    itzsnider
    Participant

    Marlon,

    Why are you calling two style sheets may I ask? That just adds more time for the server to read through code etc?

    Just asking is all.

    October 6, 2015 at 5:50 am in reply to: Parallax Pro Blog Setup #167537
    itzsnider
    Participant

    This was figured out.

    June 30, 2015 at 8:34 am in reply to: Internet Explorer Issues AgentPress #157928
    itzsnider
    Participant

    Your Site is still broken on IE9, searched as a client's site is doing the same thing in IE.

    Although IE sucks.

    June 6, 2015 at 10:28 am in reply to: Post Meta on Top Of .site-inner #155121
    itzsnider
    Participant

    Now to put that only on single pages?

    Hmmm everything is a learning item, LOVE THIS STUFF!!

    June 6, 2015 at 10:18 am in reply to: Post Meta on Top Of .site-inner #155117
    itzsnider
    Participant

    For some reason this needs to be the last code

    /* Helps to remove ? content for pageload
    function _remove_script_version( $src ){
    	$parts = explode( '?ver', $src );
            return $parts[0];
    }
    add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
    add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );

    It now works, now to style it and remove tags from showing!!

    Thanks Brad!!

    June 6, 2015 at 10:02 am in reply to: Post Meta on Top Of .site-inner #155114
    itzsnider
    Participant

    I added it to the bottom and it brings the site white. Must be missing something.

    June 6, 2015 at 9:59 am in reply to: Post Meta on Top Of .site-inner #155111
    itzsnider
    Participant

    What am I missing here?

    My whole Functions.php is here - http://pastebin.com/yQhnLC3J

    I removed this code

    //* Customize the post meta function
    add_filter( 'genesis_post_meta', 'sp_post_meta_filter' );
    function sp_post_meta_filter($post_meta) {
    if ( !is_page() ) {
    $post_meta = '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]';
    return $post_meta;
    }}

    and then I added this code

    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    add_action( 'genesis_after_header', 'genesis_post_meta' );

    then it broke my site.... must be missing something small

    June 5, 2015 at 10:06 am in reply to: Enlarged logo area now covering menu in Pretty Chic child theme #154992
    itzsnider
    Participant

    Just add padding-top: 42px;

    like so

    .nav-primary {
      background: #fff;
      border: 1px solid #aba9a9;
      margin: 0 0 35px auto;
      max-width: 960px;
      padding-top: 42px;
      width: 100%;
    }

    I would also look at it in mobile to make sure it works.

    Also if the developer doesn't support CSS, not sure what they do. Hit me up if you need more help.

    June 5, 2015 at 5:39 am in reply to: Post Meta on Top Of .site-inner #154972
    itzsnider
    Participant

    Anyone able to lend a hand here?

    June 4, 2015 at 1:08 pm in reply to: Introducing my website! #154877
    itzsnider
    Participant

    Super sexy,I love it!

    June 4, 2015 at 1:06 pm in reply to: Google page speed recommends gzip, but WP Supercache is already installed #154876
    itzsnider
    Participant

    I am from Towson, MD!!!

    Anyway, had to shout out to a fellow Baltimoron!!

    I would honestly use the W3 Tital Cache plyugin found here - https://wordpress.org/plugins/w3-total-cache/

    I would use this over anything, OR switch to a host that offers it for you, mine - Flywheel does all of that for me behind the scenes. NO need for plugins.

    Good luck

    June 4, 2015 at 1:04 pm in reply to: Archive title to the right of feature Image #154875
    itzsnider
    Participant

    You would need to edit the following to make the font smaller

    .archive-title {
      font-size: 20px;
      margin-bottom: 24px;
    }

    And then add a float:right; condition or text-alight:right; condition to make it go to the right if i am following what you want.

  • Author
    Posts
Viewing 20 posts - 41 through 60 (of 85 total)
← 1 2 3 4 5 →
« 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