Forum Replies Created
-
AuthorPosts
-
biswajit
MemberI want to keep the logo as it is.
But i want to change the header colour from black to blue.biswajit
MemberThanks a lot for the reply.
I am using blue color style options for my theme ( eleven40) . But the header and footer color for this option is black by default.
I was able to change footer color by replacing the default footer image named footer-widgets.
I am not able to make it out as to which image i should replace for changing header color.
January 26, 2013 at 10:23 am in reply to: How to modify spacing between widget areas in eleven40 theme? #15016biswajit
MemberOne more question Jon,
Why are you using two "margin" in the below code?
.enews-widget {
background-color: #e7e7e7;
border: 9px solid #ddd;
margin: 48px 10%;
margin: 3rem 10%;
}Is one for top margin and the other for below margin ? Also what is the difference between px and rem?
I am new to css, so lot of questions 🙂 But its a good learning experience working with genesis.Thanks,
BiswajitJanuary 26, 2013 at 10:01 am in reply to: How to modify spacing between widget areas in eleven40 theme? #15009biswajit
MemberHI Jon,
Thanks a lot . This worked.
I have few more doubts .
I have registered e-news widget area after post using this below code .
/** Register newsletter widget area */
genesis_register_sidebar( array(
'id' => 'newsletter',
'name' => __( 'Newsletter', 'custom-theme' ),
'description' => __( 'This is the newsletter section.', 'custom-theme' ),
) );/** Add the newsletter widget after the post content */
add_action( 'genesis_after_post_content', 'custom_add_newsletter_box' );
function custom_add_newsletter_box() {
if ( is_singular( 'post' ) )
genesis_widget_area( 'newsletter', array(
'before' => '<div id="enews widget-area">',
) );
}What does div id "enews widget area " refer to ? Does this div already exist in genesis theme or i am creating it new using the code above ? Also what does "array" and " before" refer to in the above code ?
How can i align newsletter area with post content area and related posts area so that all fill equal widths ? If you see my page, right now the newsletter area is of unequal widths and looking unaligned ?
Thanks again .
biswajit
MemberRefer 7 easy to follow steps to a killer wordpress website using the powerful genesis framework from trotterway.
Here the author has taken news theme and customizing it.
-
AuthorPosts