Forum Replies Created
-
AuthorPosts
-
February 23, 2013 at 11:40 am in reply to: Changing the background image for tablet view Magazine Theme #22415
perplexed
MemberThank you,
The code was an excerpt, the closing bracket was down a ways. Thank you for pointing out my mistake in the class name. I'm not sure how I got the name reversed, and am sure I would have kept looking past it. Thanks again!
February 18, 2013 at 6:32 pm in reply to: Help Adding a Widget Area to Genesis Magazine Child Theme Header #21160perplexed
MemberHi Chris,
No luck. I decided to give up and use a header image instead. Thanks for your help!
February 18, 2013 at 12:31 pm in reply to: Help Adding a Widget Area to Genesis Magazine Child Theme Header #21053perplexed
MemberHi Chris,
Thank you for your explination. I'm afraid that I'm still missing something.
Here's what I added to functions.php:
/** Replace Site Title & Description with logo widget area */
remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
function output_my_logo(){
if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar( 'logo' ) ) {
}
}
add_action( 'genesis_site_title', 'output_my_logo');And I registered the sidebar:
genesis_register_sidebar( array(
'id' => 'logo',
'name' => __( 'Logo', 'magazine' ),
'description' => __( 'This is the logo.', 'magazine' ),
) );I see the logo widget in the backend, and I added content to it, but it doesn't show. Have I missed a step?
-
AuthorPosts