Forum Replies Created
-
AuthorPosts
-
March 10, 2013 at 10:32 am in reply to: How do I make the Metro theme a fixed width template? #25314
SoZo
MemberSoZo
MemberYou can enable the author box in your Profile settings and enter a bio there as well. The image will pull the gravatar associated with the author's email.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberHave you deactivated all plugins to rule out conflicts?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberIf you want the grey background to span the header you'd need to add it using #nav
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberSoZo
MemberChange it to this
ul.menu-primary {
width: auto;
float: right;
}
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberFebruary 5, 2013 at 1:23 pm in reply to: Getting shortcode and/or a plugin to work in Menu Bar #18279SoZo
MemberThe metro theme adds a sidebar to the subnav with this
// Adds widget area before the .menu on #subnav add_filter( 'genesis_do_subnav', 'child_do_subnav_widget', 10, 2 ); function child_do_subnav_widget( $subnav_output, $subnav ){ ob_start(); genesis_widget_area( 'subnav-left', array( 'before' => '<div class="subnav-left widget-area">', ) ); $widget_area = ob_get_clean(); return str_replace( $subnav, $widget_area . $subnav, $subnav_output ); }
You should be able to figure it out from there but if you want me to do it you can email me john[at]sozosdesign.com.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberYou could add in the advanced grid loop.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberYou should be able to use a different hook like genesis_before_footer
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberChild theme updates are not automatic. You need to update them manually.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberIf you want a menu item that won't link anywhere for your parent item you add a custom link and enter a # into the URL field. You create child items by dragging them to the right so that they are indented beneath the parent item.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberThat is for the older version of the portfolio template. The newer one use a portfolio custom post type as explained in the theme's setup instructions
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberYou can put featured post widgets into any of the other home sidebars
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberDelete home.php and set your Reading settings back to their defaults. Then delete all the .home body class selectors/rules form your style sheet, e.g. .home #inner
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberAdd this to your style sheet
.home #content,
.home #sidbar {
display: none;
}
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberNo, 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
SoZo
MemberThe 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
SoZo
MemberLooks like you found the style rule
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
SoZo
MemberI'm getting gothic in Safari as well. Have you cleared your cache?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
-
AuthorPosts