Forum Replies Created
-
AuthorPosts
-
Jen Baumann
ParticipantYou're welcome!
November 30, 2012 at 11:00 am in reply to: [Delicious] featured image border on page, but not on post ?? #2549Jen Baumann
ParticipantYou're welcome!
November 30, 2012 at 10:17 am in reply to: [Delicious] featured image border on page, but not on post ?? #2535Jen Baumann
ParticipantYou could play with this:
.widget h2 {
margin: 10px 0 5px;
}Jen Baumann
ParticipantTry changing the margin of the #header div:
#header {
margin: 10px auto;
min-height: 100px;
overflow: hidden;
width: 1100px;
}November 30, 2012 at 9:53 am in reply to: [Delicious] featured image border on page, but not on post ?? #2527Jen Baumann
ParticipantTry adding another block for .alignright.
.featuredpost a.alignright, .featuredpage a.alignright {
background: #EFEFEF;
padding: 3px;
border: 1px solid #D9D9D9;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-webkit-background-clip: padding-box;
-webkit-background-origin: padding-box;
}Jen Baumann
ParticipantThese links will help you customize the post info and post meta. You must be logged into my.studiopress.com
November 30, 2012 at 9:08 am in reply to: [Delicious] featured image border on page, but not on post ?? #2514Jen Baumann
ParticipantTry removing #sidebar from that section.
Jen Baumann
ParticipantSince you've removed it from genesis_before_post_content, you'll need to make your remove action:
remove_action( 'genesis_before_post_title', 'genesis_post_info' );
Jen Baumann
ParticipantYou're very welcome!
Jen Baumann
ParticipantYou need to add your action earlier. Try one of these:
add_action( 'genesis_before', 'single_conditional_actions' );
add_action( 'template_redirect', 'single_conditional_actions' );
Jen Baumann
ParticipantI'm still not clear as to what you are trying to do. Are you looking for the page's submenu to basically be "open" for display in the custom nav only on that page and subpages? If so, then you can use the menu classes to hide and show things with css. This isn't complete, but you'll get the idea:
.sidebar .menu ul {
display: none;
}
.sidebar .menu .current-menu-item ul,
.sidebar .menu .current-menu-ancestor ul {
display: block;
}Jen Baumann
ParticipantYou can also find a list of developers here.
Jen Baumann
ParticipantThis is probably what you are looking for: http://wordpress.org/extend/plugins/be-subpages-widget/
Jen Baumann
ParticipantWelcome to the new forums!
November 21, 2012 at 12:11 pm in reply to: Looking ofr Membership site tips to style like new Studiopress Community Forum #1157Jen Baumann
ParticipantThe forum is actually bbPress, a plugin for WordPress.
Jen Baumann
ParticipantI don't see a home-5 in the source code, but I do see home 1-4 disappear when making the window narrower.
Jen Baumann
ParticipantYou may be able to put something together with Multiple Post Thumbnails, but it will require writing some custom code.
Jen Baumann
ParticipantBasically, just to maintain consistency with the standard Genesis sidebar markup. If you look at the Genesis sidebar.php, you'll see the same markup.
Jen Baumann
ParticipantI recommend WooCommerce with Genesis Connect WooCommerce. Both of those are free. However, WooCommerce extensions are available for a fee to add additional functionality to the cart. They vary in price, but there is a pretty extensive collection of them at this point. There are also third-party extensions available at CodeCanyon and other sites.
Jen Baumann
ParticipantYou need to be logged into my.studiopress.com to view the tutorials.
-
AuthorPosts