• 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

Chris Moore

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 - 1 through 20 (of 76 total)
1 2 3 4 →
  • Author
    Posts
  • April 26, 2014 at 12:05 pm in reply to: How to link #respond / #comments to #disqus_thread using functions.php? #102482
    Chris Moore
    Member

    Sincerely happy that it worked out for you and was useful. 🙂


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 31, 2013 at 8:12 am in reply to: Removing Post Meta Data Empty Space #82288
    Chris Moore
    Member

    Haha! I thought you were talking about the header area and where it says "Better Than a New Year’s Resolution, By Paul Perkins"... Sometimes the post meta is there. My apologies.

    The code I shared should move the post header left (instead of centered) and close the gap between the header and your byline.

    At any rate, looks like you got what you needed either way!


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 30, 2013 at 10:07 pm in reply to: Removing Post Meta Data Empty Space #82226
    Chris Moore
    Member

    Looks like you got it to work? What changed? Needed to clear your browser cache, or you were using a caching plugin?

    At any rate, looks good to me. Let me know if you need further assistance with this.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 10:22 pm in reply to: Removing Post Meta Data Empty Space #81967
    Chris Moore
    Member

    Hello again!

    I have some other suggestions (it sometimes takes up to 3 or 4 tries to get things just right), however, I can't access your homepage anymore, it automatically redirects to your "portfolio" page.

    Still willing and happy to help.

    Best of luck either way though!


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 10:20 pm in reply to: $get_permalink to another post (PHP question) #81966
    Chris Moore
    Member

    Awesome man! Glad it worked out. Looks like this one is "Resolved"! 🙂


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 4:11 pm in reply to: $get_permalink to another post (PHP question) #81924
    Chris Moore
    Member

    No way!!! Haha... Victory!

    You're welcome.

    Can you try this though:

    href="<?php echo get_permalink($post->ID); ?>"

    With the double instead of single quotes... Just curious.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:44 pm in reply to: Removing Post Meta Data Empty Space #81922
    Chris Moore
    Member

    You don't have to. 🙂 There is more than one way to skin a cat, as they say, and that definitely holds true for CSS.

    Open your child theme's style.css and then start your customizations at the bottom, the very bottom, after everything else is said and done. That way your customizations will override the child theme's styles. This is the best way to keep clear what you have changed and what originally came with the child theme. Otherwise, you will have no idea what you did, and where.

    If this doesn't work:

    h2.entry-title {
    margin-bottom: 0.5rem;
    text-align: left;
    }

    Then try this:

    h2 .entry-title {
    margin-bottom: 0.5rem;
    text-align: left;
    }

    (separating the h2 from the .entry-title)

    One of the two should work, again, at the very bottom of the child theme's stylesheet.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:39 pm in reply to: Removing Post Meta Data Empty Space #81920
    Chris Moore
    Member

    Or even...

    h2.entry-title {
    margin-bottom: 0.5rem;
    text-align: left;
    }

    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:36 pm in reply to: Removing Post Meta Data Empty Space #81918
    Chris Moore
    Member

    On second consideration, try this:

    h2.entry-title {
    margin-bottom: 1rem;
    text-align: left;
    }

    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:30 pm in reply to: Removing Post Meta Data Empty Space #81917
    Chris Moore
    Member

    That's a margin from the h2.entry-title.

    Try this:

    h2.entry-title { margin: 0; }

    Does that work?


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:27 pm in reply to: $get_permalink to another post (PHP question) #81916
    Chris Moore
    Member

    I'm not that adept at PHP, but I wanna see if this works. 😉

    Try this:

    href="<?php '. get_permalink() .'?>"

    Or this?

    href='<?php echo get_permalink($post->ID); ?>'


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:18 pm in reply to: Read More button #81915
    Chris Moore
    Member

    If you're happy, I'm happy. Glad I could help!

    Make sure to mark this as "Resolved", at the top.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 3:17 pm in reply to: Space between header and navigation menu in Agency Pro #81914
    Chris Moore
    Member

    No problem! My pleasure.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:31 pm in reply to: Space between header and navigation menu in Agency Pro #81905
    Chris Moore
    Member

    Okay, just to double-check.. here's the final code (delete all else that was given):

    .site-header {
    position: inherit;
    }
    
    .site-container {
    padding-top: 0px;
    padding-top: 0rem;
    }
    
    li#menu-item-123 > a {
    padding-top: 0px;
    }

    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:25 pm in reply to: Space between header and navigation menu in Agency Pro #81902
    Chris Moore
    Member

    Ohhh, and that "line" at the top, well, it isn't a line after all! It's the background creeping through (I'm on Chrome on a Mac).

    You have "padding-top: 1px" at the top. Needs to be this:

    .site-container {
    padding-top: 0px;
    padding-top: 0rem;
    }

    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:21 pm in reply to: Space between header and navigation menu in Agency Pro #81901
    Chris Moore
    Member

    Boom!!! This one instead:

    li#menu-item-123 > a {
    padding-top: 0px;
    }

    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:17 pm in reply to: Space between header and navigation menu in Agency Pro #81899
    Chris Moore
    Member

    Actually, there's a little problem with that last fix. It caused the sub-nav items (for the owl nav) to have a space between them. Thinking about this for a second... 😉


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:10 pm in reply to: How can I move to the bottom the Post Byline (date, etc… link before content)? #81898
    Chris Moore
    Member

    Awesome. Glad to hear!

    In general, no, I don't think it should be a problem. But always double and triple check (and on mobile devices as well)!


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:07 pm in reply to: Space between header and navigation menu in Agency Pro #81893
    Chris Moore
    Member

    Also, you may want to do this, so that the "owl menu" is not sooooo high. It has to be higher than the rest, because of the owl, but at least you can collapse it a little bit. Try this:

    li#menu-item-123 a { 
    padding-top: initial; 
    }
    

    You could then probably remove that thin blue line that you added at the top.

    Just a thought... 😉


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

    December 29, 2013 at 2:03 pm in reply to: Space between header and navigation menu in Agency Pro #81891
    Chris Moore
    Member

    "No owls were hurt in this CSS fix..." 😉

    Please let me know if you need further assistance.


    Resepctfully, Chris Moore
    Web Dev, CSS Hacks, & Biz Consulting @ MooreCreativeIdeas.com / Blogging @ ReflectOnThis.com

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 76 total)
1 2 3 4 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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