• 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

nubloggie

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 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • April 13, 2015 at 9:28 am in reply to: Altitude Pro add slider instead of Background image #147723
    nubloggie
    Member

    would love to get an answer to this as well 🙂

    December 16, 2014 at 1:30 pm in reply to: Add title to blog page in Ambience Pro #134691
    nubloggie
    Member

    sorry - the password is welcome

    December 16, 2014 at 12:55 pm in reply to: Add title to blog page in Ambience Pro #134689
    nubloggie
    Member

    the URL is: http://bit.ly/1sAHwaZ

    your second snippet is not working either 🙁
    thanks so much for your help. 🙂

    December 16, 2014 at 12:24 pm in reply to: Add title to blog page in Ambience Pro #134683
    nubloggie
    Member

    Thanks @genwrock, but unfourtunately that didn't work. I'm not sure if it's recognizing my "posts" page as the page_blog.php template or not. Either way, the page ID is 5. I tried changing if( is_page_template('page_blog.php') ) to if( is_page (5))`
    but that still didn't work....
    Any other ideas?
    Many thanks again!

    December 16, 2014 at 6:56 am in reply to: Add title to blog page in Ambience Pro #134664
    nubloggie
    Member

    thanks @braddalton. I can't view the response you linked to however...seems to suggest that I need to become a member to view the content...?

    July 22, 2013 at 5:58 am in reply to: Modify Comments Title and include count #51822
    nubloggie
    Member

    thanks. I actually found some code to make it work:

    /** Modify Comments Title */
     add_filter( 'genesis_title_comments', 'crunchify_title_comments');
    function crunchify_title_comments() {
        return __(comments_number( '{ Be the first to comment Share your thoughts below }', '{ 1 comment....read it below or <a href="#respond" rel="nofollow">add one</a> }', '{ % comments....read it below or <a href="#respond" rel="nofollow">add one</a>} ' ), 'genesis' );
    }
    

    Any idea how to make just the comment number <h3> and leave the rest of the text normal?

    thanks for your help!

    July 18, 2013 at 12:07 am in reply to: Help Making Aweber form Responsive #51274
    nubloggie
    Member

    Got it! I switched to using the Aweber HTML code, instead of the javascript and saw they had "width=930px" instead of "max-width".

    Thanks for responding anitac!

    July 17, 2013 at 9:28 pm in reply to: Help Making Aweber form Responsive #51261
    nubloggie
    Member

    Thanks for the reply. Unfortunately,m I don't know what an iframe is, or how to tell if my form is using one...

    I am using a javascript snippet to access the form, but I could also use their html code instead.

    What do I need to do to get you the correct info? Appreciate your help. Thanks.

    July 17, 2013 at 6:20 am in reply to: Prose – Add Thin Border Line to top of pages #51124
    nubloggie
    Member

    that worked!
    Thanks a ton!!

    July 15, 2013 at 8:55 am in reply to: Prose – Add Thin Border Line to top of pages #50787
    nubloggie
    Member

    Thanks eamonmoriarty it did work...sort of (I just added it to the style.css btw)

    One strange issue i am having though - if you go now to
    http://livingaha.com/why-living-aha/
    you can see that it also added a top border above the page title. When i remove the CSS code you gave me, both the top Border and the short one above the page title dissapper, and when i add the CSS code, both Borders show up...

    Any thoughts? could it have to do with the fact that i moved the nav menu above the wrap?

    thanks for your help.

    <?php
    /** Do not remove this line. Edit functions below. */
    /** Move primary nav menu */
    remove_action( 'genesis_before_header', 'genesis_do_nav' );
    add_action( 'genesis_before', 'genesis_do_nav' );
    July 15, 2013 at 6:23 am in reply to: Prose – Add Thin Border Line to top of pages #50757
    nubloggie
    Member

    Dev, thanks, but when I paste the above code in, i get a blue line at the top of my header image, but below my nav pane...

    I'm looking for the same, full-length blue line that appears across the entire screen Here: http://www.livingaha.com
    to appear also the same way here as well: http://livingaha.com/why-living-aha/

    Any thoughts?: I beleive the minify css is off now....
    thanks again.

    July 13, 2013 at 11:56 pm in reply to: Prose – Make Custom Feature Box Responsive #50597
    nubloggie
    Member

    You know what Marcy, I played with some %'s instead of pixels and i got the nav working too!
    Thanks again for your help!

    July 13, 2013 at 11:48 pm in reply to: Prose – Make Custom Feature Box Responsive #50594
    nubloggie
    Member

    Marcy, you are amazing! That worked!! Down to %85 and it displays perfectly on my phone 🙂

    May I ask you another one?

    I moved my primary nav bar above the header and got it placed where i want it. Again though, i'm haveing a "responsive" problem and the nave bar does not display on small, mobile screens.... Any idea hwo to fix that?
    The site is http://www.livingaha.com
    Thanks so much again for your help Marcy!`CUSTOM CSS
    /** reposition header above main wrap css */

    #nav {
    position:relative;
    left:370px;

    width: 150px;
    -webkit-border-radius: 0px 0px 30px 5px;
    border-radius: 0px 0px 30px 5px;

    }
    body {
    width: 100%;
    } <code></code>CUSTOM FUNCTIONS
    <?php
    /** Do not remove this line. Edit functions below. */

    /** Move primary nav menu
    remove_action( 'genesis_before_header', 'genesis_do_nav' );
    add_action( 'genesis_before', 'genesis_do_nav' );
    */`

    July 1, 2013 at 7:39 am in reply to: Prose – Customize Nav Placement #48661
    nubloggie
    Member

    Oops, forgot to post an image: Nav Bar, way too far right and not flush https://www.dropbox.com/s/mbi4atjt2p2l0tc/Clip8.jpg

    Need to figure out how to move it in line with the right-margin of my text, and flush with the top border.

    Thanks!

    July 1, 2013 at 7:31 am in reply to: Prose – Add Thin Border Line to top of pages #48659
    nubloggie
    Member

    I still come up with the same thing..... strange.

    my origional #body CSS looks the way i want it - i just need it to display on PAGES, and not just posts. Is there a POSTS stylsheet i could add the same code to?

    Anyhow, i turned minify off, thanks for the tip.

    Appreciate your help. Thanks.

    July 1, 2013 at 1:03 am in reply to: Prose – Add Thin Border Line to top of pages #48631
    nubloggie
    Member

    thanks for taking the time to reply dev.

    Unfourtunately it didn't work.... as you can see at https://www.dropbox.com/sh/bj7cb0ggzvvg2mi/ZH2ef5NsWq , the border is now only as wide as the header, and there's a space of white at the top.

    Looks like if i go this route, I'll have to move the #header above the body/wrap, but that's a whole other level of hooks and css to make it responsive, which both elude me...

    any ideas?
    thanks again!

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