• 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

Marco

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 48 total)
1 2 3 →
  • Author
    Posts
  • June 19, 2014 at 5:01 am in reply to: Responsive secondary menu #110532
    Marco
    Member

    1) replace the content of your responsive-menu.js with this:

    jQuery(function( $ ){
    
    	$(".nav-primary .genesis-nav-menu").addClass("responsive-menu").before('<div id="responsive-menu-icon"></div>');
    	$(".nav-secondary .genesis-nav-menu").addClass("responsive-menu").before('<div id="responsive-menu-icon"></div>');
    	$("#responsive-menu-icon").click(function(){
    		$(".nav-primary .genesis-nav-menu").slideToggle();
    		$(".nav-secondary .genesis-nav-menu").slideToggle();
    	});
    	
    	$(window).resize(function(){
    		if(window.innerWidth > 768) {
    			$(".nav-primary .genesis-nav-menu").removeAttr("style");
    			$(".nav-secondary .genesis-nav-menu").removeAttr("style");
    		}
    	});
    	
    });

    2) in style.css where is the media query: @media only screen and (max-width: 768px) look for .nav-primary .responsive-menu and replace the css with:

    	.nav-primary .responsive-menu, .nav-secondary .responsive-menu {
    		display: none;
    	}
    
    	.nav-primary #responsive-menu-icon, .nav-secondary #responsive-menu-icon {
    		display: block;
    		text-align: center;
    	}

    also comment the

    	.footer-widgets,
    /*	.nav-secondary,*/
    	.site-footer,
    	.site-header,
    	.site-inner {
    		padding-left: 5%;
    		padding-right: 5%;
    	}

    tested on localhost. Works flawlessly.


    Neat & Plain – Genesis and WordPress specialist

    January 30, 2014 at 10:13 am in reply to: News Theme, how to make tabs auto scroll? #87830
    Marco
    Member
    This reply has been marked as private.
    November 29, 2013 at 5:12 am in reply to: Swapping theme fonts #76131
    Marco
    Member

    Hello, if you mean the font weight on paragraphs you better change in body the weight to 300 ( now is 400).


    Neat & Plain – Genesis and WordPress specialist

    June 3, 2013 at 1:58 am in reply to: How to Add Jetpack Share Buttons to Post Info and Post Meta Areas? #43774
    Marco
    Member
    This reply has been marked as private.
    May 5, 2013 at 11:30 am in reply to: AgentPress Property Searches #39413
    Marco
    Member

    Not the best solution but you could try to style the .property-quick-search like that:

    .property-quick-search
    {
    	border: 5px solid #FFF;
    	float: right;
    	min-height: 260px;
    	overflow: hidden;
    	padding: 11px;
    	width: 240px;
    	position: relative;
    	top: 11px;
    }
    

    Neat & Plain – Genesis and WordPress specialist

    May 5, 2013 at 11:23 am in reply to: Conflicting CSS code #39410
    Marco
    Member

    Ok, first of all there's an error on line 876. The CSS property color #5555555 does not validate. It's #555; or #555555;

    then, I don't see any div called #bbp.

    Let's try this.

    Just Paste this in place of the code you've done:

    /*Buttons*/
    /*------------------------------------------------------------*/
    INPUT[type="button"], INPUT[type="submit"]
    {
    	/*[disabled]background-color:#650221;*/
    	/*[disabled]color:#FFF;*/
    	/*[disabled]cursor:pointer;*/
    	/*[disabled]font-family:"century gothic";*/
    	/*[disabled]font-size:12px;*/
    	/*[disabled]font-weight:normal;*/
    	/*[disabled]padding:4px 7px 4px;*/
    	/*[disabled]text-decoration:none;*/
    	/*[disabled]width:136px;*/
    	/*[disabled]height:29px;*/
    }
    .home .formsubmit INPUT
    {
    	background-color: initial;
    	color: #FFF !important;
    	cursor: pointer;
    	font-family: "century gothic";
    	font-size: 12px;
    	font-weight: normal;
    	padding: 4px 7px 4px;
    	text-decoration: none;
    	width: 136px;
    	height: 29px;
    	margin: 0;
    }
    #bbp_reply_submit, #bbp_topic_submit
    {
    	/*[disabled]background-color:#650221;*/
    	/*[disabled]color:#FFF;*/
    	/*[disabled]cursor:pointer;*/
    	/*[disabled]font-family:"century gothic";*/
    	/*[disabled]font-size:12px;*/
    	/*[disabled]font-weight:normal;*/
    	/*[disabled]padding:4px 7px 4px;*/
    	/*[disabled]text-decoration:none;*/
    	/*[disabled]width:136px;*/
    	/*[disabled]height:29px;*/
    }
    #bbp_reply_submit, #bbp_topic_submit
    {
    	/*[disabled]background-color:#650221;*/
    	/*[disabled]color:#FFF;*/
    	/*[disabled]cursor:pointer;*/
    	/*[disabled]font-family:"century gothic";*/
    	/*[disabled]font-size:12px;*/
    	/*[disabled]font-weight:normal;*/
    	/*[disabled]padding:4px 7px 4px;*/
    	/*[disabled]text-decoration:none;*/
    	/*[disabled]width:136px;*/
    	/*[disabled]height:29px;*/
    }
    #nav .searchsubmit
    {
    	padding: 2px 7px 2px;
    }
    .reply A, .reply A:visited
    {
    	padding: 0 4px;
    }
    #bbp_reply_submit:hover, #bbp_topic_submit:hover
    {
    	background-color: transparent;
    	border: 1px solid transparent;
    	color: #FFF;
    	text-decoration: none;
    	width: 136px;
    	height: 29px;
    }
    INPUT:hover[type="button"], INPUT:hover[type="submit"]
    {
    	background-color: transparent;
    	border: 1px solid transparent;
    	color: #FFF;
    	text-decoration: none;
    	width: 136px;
    	height: 29px;
    }
    

    and in the
    /*Miscellaneous Changes*/
    /*-------------------------------------------------------------*/

    at the very end:

    .wpcf7-form-control.wpcf7-submit
    {
    	background-color: #650221;
    	color: #FFF !important;
    	cursor: pointer;
    	font-family: "century gothic";
    	font-size: 12px;
    	font-weight: normal;
    	padding: 4px 7px 4px;
    	text-decoration: none;
    	width: 136px;
    	height: 29px;
    }
    .wpcf7-form-control.wpcf7-submit:hover
    {
    	background: #4D1070;
    }
    INPUT[type="button"], INPUT[type="submit"]
    {
    	/*[disabled]background-color:transparent;*/
    	/*[disabled]border:none;*/
    }
    #bbp_reply_submit, #bbp_topic_submit
    {
    	background-color: transparent;
    	border: none;
    }
    

    I've commented something.

    Let me know if we're on the right track.


    Neat & Plain – Genesis and WordPress specialist

    May 4, 2013 at 10:46 am in reply to: Remove Posts from Homepage #39272
    Marco
    Member

    Hello,
    just place 2 // before the `add_action( 'genesis_loop', 'minimum_grid_loop_helper' );`

    like` //add_action( 'genesis_loop', 'minimum_grid_loop_helper' );`

    You don't have to remove the `remove_action( 'genesis_loop', 'genesis_do_loop' );`.

    If you need to remove the sidebar, just add this before the genesis();

    `remove_action( 'genesis_after_content', 'genesis_get_sidebar' );`

    genesis();


    Neat & Plain – Genesis and WordPress specialist

    May 4, 2013 at 10:30 am in reply to: Comment box (APEAK YOUR MIND ) Dissapears #39262
    Marco
    Member

    In the dashboard look for Settings / Discussion. There check if in Other comment settings is checked the Users must be registered and logged in to comment . If so, just uncheck it.


    Neat & Plain – Genesis and WordPress specialist

    May 4, 2013 at 9:15 am in reply to: Poor quality thumbnails #39250
    Marco
    Member

    I'm quoting Jesse.
    For example the middle thumbnail is blurry even at full size...

    http://stanbos.nl/stanbos/wp-content/uploads/2013/05/stbos.jpg


    Neat & Plain – Genesis and WordPress specialist

    May 4, 2013 at 7:18 am in reply to: Conflicting CSS code #39234
    Marco
    Member

    Css line 1342.
    Should be background-color: transparent; and not background-color: #transparent;


    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 11:45 pm in reply to: Show Full Post When Only One Post Per Category #39212
    Marco
    Member

    It works in any WordPress theme.


    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 9:49 am in reply to: CSS not working on certain objects #39103
    Marco
    Member

    Hello,

    in your .css you're missing a } around line 983

    .widget-headline {
    	padding: 0 8px;
    	padding: 0 0.5rem;
    
    /*
    07 Lists
    ---------------------------------------------------------------------------------------------------- */
    

    Cheers.


    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 9:44 am in reply to: Widget Title Bar color change #39102
    Marco
    Member

    No, just erase the widget-header.png.
    #EEE is just a very light shade of gray.


    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 9:02 am in reply to: Widget Title Bar color change #39089
    Marco
    Member

    Css line 629 and below

    #content #slider h2, #content #featured-bottom h2, #content #featured-top h2 {
    	background: #EEEEEE url(images/widget-header.png);
    	color: #FFFFFF;
    	font-family: Trebuchet MS, Arial, Verdana;
    	font-size: 12px;
    	font-weight: bold;
    	text-shadow: #055669 1px 1px;
    	margin: 0;
    	padding: 4px 5px 4px 10px;
    	}
    

    You have to change

    background: #EEEEEE url(images/widget-header.png);

    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 4:07 am in reply to: Show Full Post When Only One Post Per Category #39045
    Marco
    Member

    The code below may help you, just paste it in functions.php:

    `
    /** Redirect to single post page if there is one post in category/tag */

    add_action('template_redirect', 'child_redirect_to_post');

    function child_redirect_to_post(){
    global $wp_query;

    // If there is one post on archive page
    if( is_archive() && $wp_query->post_count == 1 ){
    // Setup post data
    the_post();
    // Get permalink
    $post_url = get_permalink();
    // Redirect to post page
    wp_redirect( $post_url );
    }

    }`


    Neat & Plain – Genesis and WordPress specialist

    May 3, 2013 at 4:02 am in reply to: Minimum – Rendering 3 Footer Widgets on Homepage Only #39042
    Marco
    Member

    Hello,

    copy this on functions.php just below the
    `add_theme_support( 'genesis-footer-widgets', 3 );`

    function home_footer_widgets() {
    
    	if ( !is_home() ) {
    
    		remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
    	}
    }
    add_action( 'genesis_before_footer', 'home_footer_widgets',1 );
    

    Neat & Plain – Genesis and WordPress specialist

    May 2, 2013 at 8:23 am in reply to: Inner wrap responsive question #38916
    Marco
    Member

    Hello,

    css line 1668, there's an 820px width. Check if this works:

    ` #inner .wrap, .full-width-content #inner .wrap {
    width: auto;
    }`

    Marco


    Neat & Plain – Genesis and WordPress specialist

    May 2, 2013 at 3:23 am in reply to: What have I done? Fat fonts in Magazine #38901
    Marco
    Member

    Hello,
    you have 5 `` and just 2 `` you must close the 3 that are left.
    This happens also in some other pages, while in http://www.rogerlapin.co.uk/corporate-magician-hire all looks good.


    Neat & Plain – Genesis and WordPress specialist

    May 2, 2013 at 3:02 am in reply to: Minimum – Rendering 3 Footer Widgets on Homepage Only #38898
    Marco
    Member

    Hello,

    I'd rather add 3 brand new footer widgets on home page and comment in functions.php the
    `add_theme_support( 'genesis-footer-widgets', 3 );`

    You could also hide/show them via .css.


    Neat & Plain – Genesis and WordPress specialist

    May 1, 2013 at 2:18 am in reply to: Changing height on Property Search widget (in AgentPress) #38707
    Marco
    Member

    The Property Search Widget of dsIDXPress is a PITA.

    Look at: http://lagunaagent.com/, to make it look like that I:

    1) reworked the plugin widget code cause it has several in it.
    2) reworked the .css as you could see in the style.css

    Feel free to take some inspiration.

    Marco


    Neat & Plain – Genesis and WordPress specialist

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

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