Forum Replies Created
-
AuthorPosts
-
MarketLeanerMember
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 GMTyou 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 #87357MarketLeanerMember"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/
MarketLeanerMemberyou 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 #75589MarketLeanerMemberTo 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 #75588MarketLeanerMemberin 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(); });});
MarketLeanerMembertry 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.
MarketLeanerMemberI 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-5MarketLeanerMemberthere'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 #61320MarketLeanerMemberfor 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 thatThe box-sizing property is supported in Internet Explorer, Opera, Chrome, and Safari.
Firefox supports an alternative, the -moz-box-sizing property.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-chromeSeptember 8, 2013 at 1:58 am in reply to: Executive Theme: Featured Post Widget Image does not align #61318MarketLeanerMemberThat 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.
MarketLeanerMember.wrap in genesis 2.0
MarketLeanerMemberahh 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
MarketLeanerMemberjust 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; }
MarketLeanerMemberI'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 #61254MarketLeanerMemberI 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
MarketLeanerMemberSecond 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>'; } }
MarketLeanerMemberDid you try this?
Appearance > Background > Upload Image
Or do you mean featured images for social buttons?
MarketLeanerMemberAh 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...
MarketLeanerMemberI 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.
-
AuthorPosts