• 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

MarketLeaner

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 21 total)
1 2 →
  • Author
    Posts
  • January 27, 2014 at 7:38 pm in reply to: Google structured data #87358
    MarketLeaner
    Member

    i believe google has to recrawl your site, and then it will update webmaster tools dashboard. Might take a week or two.

    to see if they recrawled it check the cache on a google results page search for site:yoursite.com

    This is Google's cache of http://www.circaphotography.co.uk/. It is a snapshot of the page as it appeared on Jan 20, 2014 07:49:54 GMT.
    This is Google's cache of http://www.circaphotography.co.uk/prices/. It is a snapshot of the page as it appeared on Dec 30, 2013 21:12:55 GMT

    you can also try pointing a social link like tweet or link from another site that is crawled more frequently to the site to get it to recrawl faster, ie. a comment on a high traffic blog article recently posted should speed the process up.

    January 27, 2014 at 7:31 pm in reply to: Combining Date, Post Title, and comments link into one line #87357
    MarketLeaner
    Member

    "genesis_entry_header" replaced "genesis_before_post_title"

    since it also replaced other things, if you have trouble putting it where you need, use priority numbers ie.

    function ( hook location, name of function, 5)

    http://my.studiopress.com/docs/genesis-loop-hooks-comparison/

    November 29, 2013 at 11:25 am in reply to: Modern Portfolio – Disable Responsive #76174
    MarketLeaner
    Member

    you want to remove all @media queries code for all browser widths ie.


    @media
    only screen and (max-width: /*ALL WIDTHS*/ ) {

    /* remove all included css code within brackets */
    }

    and then save changes and clear cache before refreshing. There should certainly be an effect.

    If some features still seem responsive, inspect them with inspect element in chrome and find out what their css selectors are and then edit the specific selectors in your style.css file.

    November 25, 2013 at 4:57 pm in reply to: Agency Pro – Extend Fade Out beyond Home Top section #75589
    MarketLeaner
    Member

    To add more sections just do the following, but you'll have to play with the effect and when itss triggered

    Copy and paste all that code and then change anything that looks like home-top to home-middle ie. home_top to home_middle .home-top to .home-middle etc.,

    I changed it to home-featured-a because thats why i was using it.

    jQuery(function( $ ){
    
        $.localScroll({
        	duration: 900
        });
        
    	function fade_home_featured_a() {
    		if ( $(window).width() > 800 ) {
            window_scroll = $(this).scrollTop();
    	   		$(".home-featured-a").css({
    				  'opacity' : 1-(window_scroll/1300)
    	    	});
    		}
    	}
    	$(window).scroll(function() { fade_home_featured_a(); });
    
    	
    });	
    

    And then you have to play with the 'opacity' : 1-(window_scroll/1300) section based on how far down your home middle section is in pixels

    November 25, 2013 at 4:55 pm in reply to: Agency Pro – Extend Fade Out beyond Home Top section #75588
    MarketLeaner
    Member

    in themes/agency-pro/js/home.js

    remove all this code or delete the file to remove scroll effect

    jQuery(function( $ ){

    $.localScroll({
    duration: 900
    });

    function fade_home_top() {
    if ( $(window).width() > 800 ) {
    window_scroll = $(this).scrollTop();
    $(".home-top").css({
    'opacity' : 1-(window_scroll/300)
    });
    }
    }
    $(window).scroll(function() { fade_home_top(); });

    });

    November 25, 2013 at 4:43 pm in reply to: Agency Pro home page grid adjustable? #75585
    MarketLeaner
    Member

    try adding that to the bottom. then fix it for media queries

    .home-middle .featuredpost img.entry-image {
    width: 50%;
    }

    if that doesn't work you have to go into functions.php and change this
    add_image_size( 'home-middle', 380, 380, TRUE );
    to
    add_image_size( 'home-middle', 190, 190, TRUE );

    then you might have to play with the css using firebug in firefox or inspect element in chrome to find the css selectors and then find them in your stylesheet.css file.

    November 25, 2013 at 4:38 pm in reply to: Agency Pro Background #75584
    MarketLeaner
    Member

    I dont know but you mean like this right?

    http://themeforest.net/item/salient-responsive-multipurpose-theme/full_screen_preview/4363266

    maybe you can inspect elements and get some clues on that.

    you can self host it and then iframe it width and height 100% and z-index -999 and positiion: absolute

    another couple options
    http://stackoverflow.com/questions/3800813/video-as-site-background-html-5

    November 25, 2013 at 4:27 pm in reply to: Agency Pro background image question #75582
    MarketLeaner
    Member

    there's no required image size because it uses a stretch function.

    You can try playing with the background image characteristics ie. backrground position, background attachment in the Customize section where you uploaded the image.

    From a graphics standpoint, I'd try bring things into the middle more.

    I had the same problem with minimum pro http://demo.studiopress.com/minimum/ and I removed the code and added in a responsive image like this http://www.inkwaterentertainment.com/

    this resource might help; http://sridharkatakam.com/setting-responsive-image-place-background-minimum-pro/

    September 8, 2013 at 2:15 am in reply to: Small difference IE/FF vs Chrome/Safari on primary navigation #61320
    MarketLeaner
    Member

    for navigator.com I think your issue is might involve your 1px border.

    If its a border-box issues check out http://caniuse.com/css3-boxsizing
    textarea {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    }
    also read on w3schools.com that

    The box-sizing property is supported in Internet Explorer, Opera, Chrome, and Safari.
    Firefox supports an alternative, the -moz-box-sizing property.

    http://stackoverflow.com/questions/11678341/the-padding-used-in-my-menu-is-off-by-1px-between-firefox-and-chrome-how-do-i-f

    also read here that adding { line-height: normal; padding: xyx } works for some people:
    http://stackoverflow.com/questions/4439537/1-pixel-line-height-difference-between-firefox-and-chrome

    September 8, 2013 at 1:58 am in reply to: Executive Theme: Featured Post Widget Image does not align #61318
    MarketLeaner
    Member

    That only works for firefox, make sure you add these other ones for other browsers. also i think IE is ms-box-sizing, not sure though.

    .widget-wrap {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    }

    I'm not sure why support has fallen off either. I know carriedils.com and brad at wpsites.net are still helpful on a lot of topics. I think part of it is the switch to html5 and gen2.0 in general, a lot has changed and a quick reply with a solution takes longer to transfer and make sure it applies to something new.

    September 8, 2013 at 1:48 am in reply to: Metro – How to Change Wrap/Page Color #61317
    MarketLeaner
    Member

    .wrap in genesis 2.0

    September 8, 2013 at 1:46 am in reply to: Add area outside of wrap #61316
    MarketLeaner
    Member

    ahh im looking for this as well for a couple widget areas i registered. i have the boxed area with a background but its not full-width.

    the boxed area background I got by doing

    .home-featured-5 {
    background: #555; 
    }

    Your page is also pulling a 404

    September 8, 2013 at 1:41 am in reply to: Genesis 2.0 Custom background #61315
    MarketLeaner
    Member

    just some ideas, one of the three of these selectors

    .custom-background body, .header-image, custom-background .wrap {
    box-shadow: 3px 3px 3px #7C7C7C;
    }

    if you're calling it by the wrong ID.

    You could also try using the moz, ms, and webkit stuff and try to find how they handle it with boxing.

    also if its a problem with elements not image ID you could try:

    image ID {
          width: 100px;
          height: 100px;
          margin: 20px;
          background-color: transparent;
          box-shadow: 3px 3px 3px #000;
        }
    September 7, 2013 at 4:02 pm in reply to: Minimum Pro – Replace Site Tagline with Page Title #61266
    MarketLeaner
    Member

    I'm sure there is a better way but after I removed all post titles with the remove_action, I just decided to selectively add genesiss_do_post_title back for specific (non-single) pages (like categories and tags) because I don't use them very often. So right now I only added my /blog and home page and I'll just add to it as needed. Would still be interested in seeing a better solution though. This is a bit budget.

    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    add_action('get_header', 'selectively_remove_page_titles');
    
    function selectively_remove_page_titles() {
        $pages = array( 21 );
        if ( is_page($pages) ) {
            add_action( 'genesis_entry_header', 'genesis_do_post_title' );
        }
    }

    Shoutout to Brad's code http://wpsites.net/web-design/remove-titles-specific-conditions/

    September 7, 2013 at 2:27 pm in reply to: Adding Titles Above Featured Home Widgets – Minimum Pro #61254
    MarketLeaner
    Member

    I would try adding more widgets, like go into functions.php, register them right under

    	'description' => __( 'This is the home featured 3 section.', 'minimum' ),
    ) );

    Like this:

    genesis_register_sidebar( array(
    	'id'          => 'featured-page-4',
    	'name'        => __( 'Featured Page 4', 'minimum' ),
    	'description' => __( 'This is the home featured 4 section.', 'minimum' ),
    ) );

    and then call them in the same php format as the ones being called in front-page.php
    if ( is_active_sidebar( 'featured-page-1' ) || is_active_sidebar( 'featured-page-2' ) || is_active_sidebar( 'featured-page-3' ) || is_active_sidebar( 'featured-page-4' ) ) {

    and then work on the css

    September 3, 2013 at 9:24 pm in reply to: Browser Tab Page Title – Change In Functions? #60559
    MarketLeaner
    Member

    http://wordpress.org/plugins/genesis-title-toggle/ ?

    September 3, 2013 at 3:03 pm in reply to: Minimum Pro – Replace Site Tagline with Page Title #60498
    MarketLeaner
    Member

    Second jawn was close. Had to play with it. else if(is_page() ) was the main difference and removed repeated function above else line.

    add_action( 'genesis_after_header', 'minimum_site_tagline' );
    function minimum_site_tagline() {
    if (is_home() || is_front_page()) {
    	printf( '<div %s>', genesis_attr( 'site-tagline' ) );
    	genesis_structural_wrap( 'site-tagline' );
    
    		printf( '<div %s>', genesis_attr( 'site-tagline-left' ) );
    		printf( '<p %s>%s</p>', genesis_attr( 'site-description' ), esc_html( get_bloginfo( 'description' ) ) );
    		echo '</div>';
    	
    		printf( '<div %s>', genesis_attr( 'site-tagline-right' ) );
    		genesis_widget_area( 'site-tagline-right' );
    		echo '</div>';
    
    	genesis_structural_wrap( 'site-tagline', 'close' );
    	echo '</div>';}
    
    else if(is_page() ) {
    	printf( '<div %s>', genesis_attr( 'site-tagline' ) );
    	genesis_structural_wrap( 'site-tagline' );
    
    		printf( '<div %s>', genesis_attr( 'site-tagline-left' ) );
    		printf( '<h1 %s>%s</h1>', genesis_attr( 'entry-title' ), esc_html( get_the_title() ) );
    		echo '</div>';
    	
    		printf( '<div %s>', genesis_attr( 'site-tagline-right' ) );
    		genesis_widget_area( 'site-tagline-right' );
    		echo '</div>';
    
    	genesis_structural_wrap( 'site-tagline', 'close' );
    	echo '</div>';
    
    } }
    August 28, 2013 at 2:53 pm in reply to: Featured image not showing up in Minmium Pro #59321
    MarketLeaner
    Member

    Did you try this?

    Appearance > Background > Upload Image

    Or do you mean featured images for social buttons?

    August 28, 2013 at 2:42 pm in reply to: Adding Featured Image to Minimum Pro #59317
    MarketLeaner
    Member

    Ah I doubt you want to have it be the same size on the post pages?

    Like you probably want it to fill the space the tagline takes up under the menu?

    If so, you have to go into your template page php file and add in the same functionality for background image that is currently in front-page.php file, and then you probably have to play with the css so that it only shows a certain height.

    Haven't done this though...

    August 28, 2013 at 1:14 pm in reply to: Minimum Pro Homepage slideshow #59286
    MarketLeaner
    Member

    I haven't done this but I'd try to remove this from front-page.php

    //* Load scripts only if custom background is being used
    	if ( ! get_background_image() )
    		return;
    
    	//* Enqueue Backstretch scripts
    	wp_enqueue_script( 'minimum-backstretch', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch.js', array( 'jquery' ), '1.0.0' );
    	wp_enqueue_script( 'minimum-backstretch-set', get_bloginfo('stylesheet_directory').'/js/backstretch-set.js' , array( 'jquery', 'minimum-backstretch' ), '1.0.0' );
    	wp_localize_script( 'minimum-backstretch-set', 'BackStretchImg', array( 'src' => get_background_image() ) );

    And then register a widget for between the nav and site tagline area, and call a responsive slider plugin

    register widget area: http://www.carriedils.com/add-slider-minimum-theme/

    Download this plugin http://wordpress.org/plugins/genesis-responsive-slider/ and drag to new widget area in widgets.

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

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