• 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

nunotmp

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 - 21 through 40 (of 156 total)
← 1 2 3 … 6 7 8 →
  • Author
    Posts
  • November 15, 2014 at 12:12 am in reply to: How to add Adsense between tags and comments? #131593
    nunotmp
    Member

    Great looking site. There is a widget area called genesis-after-entry-widget-area that needs to be supported by your theme. I am not familiar with the foodie theme so I am not sure if this is used. You can activate this area by adding this to your functions.php file add_theme_support( 'genesis-after-entry-widget-area' );

    This will give you a widget area you can then add a text widget with the adsense javascript.


    Genesis Child Themes – Follow Me

    November 14, 2014 at 11:54 pm in reply to: Genesis + Jetpack Site Logo in Customizer #131592
    nunotmp
    Member

    Hello Gabe,

    I seen this post and started looking into this and decided to create a plugin. I am still testing the plugin but you can try it out here https://github.com/nunotmp/genesis-jetpack-logo


    Genesis Child Themes – Follow Me

    November 14, 2014 at 11:23 am in reply to: Static Home Page Width Problem – Generate Pro Theme #131532
    nunotmp
    Member

    There are no example sites showing so I am not to sure on what you need. Can you link to the problem site?


    Genesis Child Themes – Follow Me

    November 14, 2014 at 11:20 am in reply to: Hook for between and #131531
    nunotmp
    Member

    There is no hook that runs between the head and body tag. The two closest hooks are genesis_meta which runs just before the closing </head> and genesis_before which runs immediately after the opening <body> tag.


    Genesis Child Themes – Follow Me

    July 2, 2014 at 12:44 pm in reply to: Create a new custom.css #112682
    nunotmp
    Member

    Sure. One way to do this would be to create a new file called something like changes.cuss and at the bottom of your style.css file do @import(path/to/file);


    Genesis Child Themes – Follow Me

    June 30, 2014 at 6:47 am in reply to: remove space between newly added widget #112087
    nunotmp
    Member

    Great! Happy to help.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 9:37 pm in reply to: Image span full width of page #112053
    nunotmp
    Member

    you can use something like this.

    
    add_action( 'genesis_after_header', 'wpz_do_banner' );
    function wpz_do_banner() {
    echo '<div class="full-width-banner">;
            echo '<img src="path/to/image.png" alt="Banner Image" />';
    echo '</div>;
    }
    

    You can then add some css to expand .full-width-banner

    
    .full-width-banner {
    width: 100%;
    }
    

    You may have to tweak the code but it should get you started. The php should go in your functions.php and the css goes in your style.css file.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 9:32 pm in reply to: How to custom display posts like this website #112052
    nunotmp
    Member

    genesis comes with a widget called Genesis featured posts. You can add that to a home widget area depending on the theme.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 9:31 pm in reply to: Primary Sidebar background color #112050
    nunotmp
    Member

    Line 1551 .sidebar


    Genesis Child Themes – Follow Me

    June 29, 2014 at 8:21 pm in reply to: Sample theme #112044
    nunotmp
    Member

    No problem. Happy to help.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 8:20 pm in reply to: Focus Pro Header Height #112043
    nunotmp
    Member

    No problem. Happy to help.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 8:17 pm in reply to: Site Title and Search Bar in the Header aren't… #112041
    nunotmp
    Member

    I cant see the markup so cant give you the exact css but there are a few ways to approach this.

    1. Make the font smaller. You can do this by editing line 854 of your style sheet.
    2. Adjust the widths of the site title and/or header-widget.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 6:20 pm in reply to: Special characters not showing up in posts #112035
    nunotmp
    Member

    Have you taken a look at this? http://codex.wordpress.org/Fun_Character_Entities

    Also it may be the font not being able to create the character?


    Genesis Child Themes – Follow Me

    June 29, 2014 at 6:13 pm in reply to: Sample theme #112033
    nunotmp
    Member

    You need to add something like below like 788 of your stylesheet.

    
    .featured-content .entry-title a:hover {
    color: #fff;
    }
    

    Genesis Child Themes – Follow Me

    June 29, 2014 at 6:08 pm in reply to: Focus Pro Header Height #112032
    nunotmp
    Member

    There are a few issues.

    1. The margin is not caused by the site title it is actually being caused by your header widget. Line 1306 to be exact. This adds a margin bottom to all widgets so you will need to remove this with something like .site-header .widget { margin-bottom: 0; }

    2. You can then add a min-height of 100px to your site-title on line 890 like this

    
    .header-image .site-title a {
    float: left;
    min-height: 100px;
    width: 100%;
    }
    

    Genesis Child Themes – Follow Me

    June 29, 2014 at 6:07 pm in reply to: Focus Pro Header Height #112031
    nunotmp
    Member

    There are a few issues.

    1. The margin is not caused by the site title it is actually being caused by your header widget. Line 1306 to be exact. This adds a margin bottom to all widgets so you will need to remove this with something like .site-header .widget { margin-bottom: 0; }

    2. You can then add a min-height of 100px to your site-title on line 890 like this

    
    .header-image .site-title a {
    float: left;
    min-height: 100px;
    width: 100%;
    }
    

    You will end up with this solution


    Genesis Child Themes – Follow Me

    June 29, 2014 at 5:11 pm in reply to: Beautiful Theme – Remove Header #112026
    nunotmp
    Member

    No, using the code @Davinder provided you will no loose the scripts functionality.

    The scripts are hooked in the wp_head() and wp_footer() hooks.


    Genesis Child Themes – Follow Me

    June 29, 2014 at 2:09 pm in reply to: remove space between newly added widget #112012
    nunotmp
    Member

    use this

    
    .home-feature .widget {
    margin-bottom: 0;
    }
    

    Genesis Child Themes – Follow Me

    June 29, 2014 at 12:49 pm in reply to: Extra widget under heading not showing on front page #112006
    nunotmp
    Member

    Great! You are welcome. 🙂


    Genesis Child Themes – Follow Me

    June 29, 2014 at 12:39 pm in reply to: Extra widget under heading not showing on front page #112004
    nunotmp
    Member

    Try this.

    
    add_action( 'genesis_after_header', 'home_feature' );
    
    function home_feature() {
    
    	if ( is_front_page() ) {
    
    		genesis_widget_area( 'home-feature', array( 
    				'before' => '<div class="home-feature home-feature">',
    				'after' => '</div>',
    			) );
    	}
    
    }
    

    There is are a couple of problems with your code.
    1. add_action( ‘genesis_after_header’, ‘home-feature’ ); You need to use underscores when naming functions instead of hyphens(-).
    2. When using genesis_widget_area you do not need to check is_active_sidebar() genesis does this internally.

    Let me know if this works.


    Genesis Child Themes – Follow Me

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 156 total)
← 1 2 3 … 6 7 8 →
« Previous Page

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