Forum Replies Created
-
AuthorPosts
-
Add this to your style sheet
.home #content,
.home #sidbar {
display: none;
}
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
No, you don’t need anything special since it’s just a widget. You can place it into any sidebar.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
The original home loop is added with this add_action
add_action( 'genesis_loop', 'agency_home_loop_helper' );
So you either need to add another one for your new function or move your divs in to the agency_home_loop_helper function.
E.g.
add_action( 'genesis_after_loop', 'agency_home_center_loop_helper' );
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Looks like you found the style rule
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
I’m getting gothic in Safari as well. Have you cleared your cache?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 4, 2013 at 6:18 pm in reply to: Tweaking and adjusting header in genesis magazine theme. #18097What is the full function you’re using? How did you add in the conditional tag?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Did you also add floats to them?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
The News theme doesn’t come with share buttons at the bottom of the post. It does have icons to build menu links in the secondary navbar.
If the plugins don’t have some sort of template tag that you can manually place then you’ll need to contact the plugins’ developers to see if there is something you can do about getting them below all of the post content.
A work around my be to increase the font size to make them more prominent. Maybe add a background.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 4, 2013 at 4:44 pm in reply to: Customize Genesis Responsive Slider with Thumbnail navigation (Agency Theme) #18056No, the Genesis Slider doesn’t have thumbnail navigation. And I am not currently taking on clients. You could grab the slider from the Delicious theme if you have access to that theme.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Add a background through the style sheet.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Of course they have customer support…through their help desk. And the community would probably be more helpful in answering your questions if you complained less and were more appreciative.

John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 4, 2013 at 2:41 pm in reply to: Blog page defaults to latest post when clicking next #17982You can’t use the blog page template on the front page. You can delete the home.php template if you don’t want to use the grid loop.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Delete the backstretch script in functions.php
// Load Backstretch script and prepare images for loading add_action( 'wp_enqueue_scripts', 'metro_enqueue_scripts' ); function metro_enqueue_scripts() { // Load scripts only if custom background is being used if ( ! get_background_image() ) return; wp_enqueue_script( 'metro-backstretch', get_bloginfo( 'stylesheet_directory' ) . '/js/backstretch.js', array( 'jquery' ), '1.0.0' ); wp_enqueue_script( 'metro-backstretch-set', get_bloginfo('stylesheet_directory').'/js/backstretch-set.js' , array( 'jquery', 'metro-backstretch' ), '1.0.0' ); wp_localize_script( 'metro-backstretch-set', 'BackStretchImg', array( 'src' => get_background_image() ) ); }
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
-
AuthorPosts