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
You 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
Have you deactivated all plugins to rule out conflicts?
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
If 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
Change it to this
ul.menu-primary {
width: auto;
float: right;
}
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
February 5, 2013 at 1:23 pm in reply to: Getting shortcode and/or a plugin to work in Menu Bar #18279The 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
You could add in the advanced grid loop.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
You should be able to use a different hook like genesis_before_footer
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Child theme updates are not automatic. You need to update them manually.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
If 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
That 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
You can put featured post widgets into any of the other home sidebars
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Delete 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
-
AuthorPosts