• 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

brock

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 166 total)
1 2 3 … 7 8 9 →
  • Author
    Posts
  • March 30, 2018 at 2:56 pm in reply to: Wellness theme – about the fonts #218473
    brock
    Member

    I can use an extra pair from time to time, too. Take care!

    March 30, 2018 at 7:50 am in reply to: Wellness theme – about the fonts #218457
    brock
    Member

    They're google fonts.

    March 24, 2018 at 2:23 am in reply to: Showcase Pro – How to move button in front-page-1 slightly to the right #218294
    brock
    Member

    You can use the CSS position property.

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    March 23, 2018 at 11:57 am in reply to: Custom search #218287
    brock
    Member

    My pleasure. Is there any reason to prefer get_search_query() over looking at the GET variable directly in this case?

    March 23, 2018 at 1:06 am in reply to: Custom search #218267
    brock
    Member

    Create a new file in your child theme called search.php and add this to it:

    
    <?php
    /**
     * search.php
     *
     * Customizations to the search results page.
     * 
     */
    
    // If visitor searches for empty string or a bunch of whitespace, say nothing found.
    if ( empty( trim( $_GET['s'] ) ) ) {
        remove_action( 'genesis_loop', 'genesis_do_loop' );
        add_action( 'genesis_loop', 'genesis_do_noposts' );
    }
        
    genesis();
    
    March 17, 2018 at 11:02 am in reply to: adsence #218018
    brock
    Member

    Was there a problem with one of the tutorials you find when duckduckgo'ing it?

    March 15, 2018 at 8:54 am in reply to: constant contact poll embedded in page / outreach pro #217927
    brock
    Member

    Try changing the embedded link to https. You're trying to embed a page that doesn't encrypt its traffic into one that does (yours). The browser doesn't let you mix them in the same page, otherwise the green padlock on your page would be misleading. The clue is in the browser's JavaScript console.

    See:
    https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content?utm_source=mozilla&utm_medium=firefox-console-errors&utm_campaign=default

    If they have an https version of the same survey, embed that one instead.

    March 6, 2018 at 11:01 pm in reply to: Question about Business Pro theme #217401
    brock
    Member

    It automatically adds the gray no matter what the image is. If you are comfortable editing CSS, you can remove it. Look in the stylesheet for:

    
    .page-header::before {
        /* Look for this */
        background-color: rgba(35, 44, 57, 0.9);
    } 
    

    You will also probably need to change the font color of surrounding text such as the site title, the navigation, and the headline in the center, since they're set to white.

    July 12, 2016 at 2:38 am in reply to: New to Genesis and WordPress, simple question… #189271
    brock
    Member

    Yes, absolutely, you are correct.

    July 5, 2016 at 5:16 pm in reply to: Strange arrows showing up in Widget #188928
    brock
    Member

    Wow, how annoying. Try this in the CSS file:

    .after-entry li::before, .news-pro-home .content li::before, .sidebar li::before {
    	content: normal;
    }
    June 30, 2016 at 8:46 am in reply to: I a a newbie to website building #188662
    brock
    Member

    Building an amateur site is difficult. Building a professional one is only something a professional is going to be able to do. You'll probably need to hire someone. If you are approaching it in the spirit of DIY, then go for it. Just realize you'll probably put in a lot of time googling to make your site and it may not be very professional. With that said, there is a lot of help here for doing specific things related to Genesis. I feel like that's the best advice unless you have a more specific question.

    All the best!

    June 29, 2016 at 2:22 pm in reply to: Possibility to have a slider's interval driven by click? #188606
    brock
    Member

    Maybe I am misunderstanding your question, but if your visitor clicks a link won't it take them to a new page, thereby nullifying whatever event would be triggered on that action?

    June 28, 2016 at 2:19 am in reply to: Genesis Sample Theme Question #188426
    brock
    Member

    It's hard to answer your question without seeing the photoshop mockup and the code you are wanting to remove. The header, nav bar, loop, etc. are all basic theme components and they are already in the sample theme. So it sounds to me like you'll only need to add some CSS.

    June 27, 2016 at 2:04 pm in reply to: Hook for Secondary Nav? #188408
    brock
    Member

    Install the Genesis Visual Hook plugin. It will show you where all the hooks are on the page.

    June 27, 2016 at 9:07 am in reply to: always center my image in the div, portfolio page #188380
    brock
    Member

    Cool design by the way.

    June 24, 2016 at 1:19 am in reply to: Cafe Pro – Home Page 1 Image Resize #188209
    brock
    Member

    I'm guessing the site is on your local machine?

    June 23, 2016 at 12:20 am in reply to: Eleven40 Pro Heder image and nav color #188093
    brock
    Member

    Sorry for the delayed reply. If I were you I would replace the banner image on mobile screens. Honestly, this has enough detail that I almost want to recommend you hire someone for a one-off customization job. But go ahead and try replacing the code I gave you with this...

    functions.php:

    
    //* Hooks a sitewide banner after the header
    add_action( 'genesis_after_header', 'bc_site_wide_banner');
    function bc_site_wide_banner() { 
        if ( is_page('1375') ) {
            return;
        }
    ?>
    <div class="site-wide-banner wrap"><a href="GO HERE WHEN CLICKED"><img src="YOUR IMAGE HERE" alt="this describes the picture --> escape you\'re quotations"></a></div>
    <?php } ?>
    

    css:

    
    .site-wide-banner > img {
        text-align: center;
        margin: probably add some;
    }
    
    @media screen and (max-width: 750px) {
        .site-wide-banner {
            display: none;
        }
    }
    

    Note that this is hiding the image at 750 pixels. This is the stop-gap solution I recommend until you create another image to replace it on smaller screens. Also, note that the banner is hidden on that page you specified. You said other templates but only provided the one. A site wide banner generally means being every page on the site. Best of luck.

    June 22, 2016 at 1:45 am in reply to: Atmosphere – Front Page Layout Configurations #187990
    brock
    Member

    Here is a lead for you. If you compare the markup with that of the Atmosphere Pro demo, there is a difference. The sections, "airtight security, etc.", are all wrapped in some <small></small> tags. When you move them outside of those tags, it goes back to normal.

    June 21, 2016 at 2:10 pm in reply to: Change Executive Pro Nav Menu – Current Menut Item Color #187963
    brock
    Member

    Just to be clear, did you change it on line 1109?

    .genesis-nav-menu .current-menu-item > a {
        background-color: yourcolor;
        color: #fff;
    }

    It doesn't appear to have been changed.

    June 21, 2016 at 12:56 am in reply to: Eleven40 Pro Heder image and nav color #187915
    brock
    Member

    William and I responded at the same time, but if you don't know how to add a widget area (I'm guessing you don't) then this might be helpful. Adding a widget would probably be neater but this will work too. Good luck.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 166 total)
1 2 3 … 7 8 9 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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