Forum Replies Created
-
AuthorPosts
-
Jen BaumannParticipant
You're welcome!
November 30, 2012 at 11:00 am in reply to: [Delicious] featured image border on page, but not on post ?? #2549Jen BaumannParticipantYou're welcome!
November 30, 2012 at 10:17 am in reply to: [Delicious] featured image border on page, but not on post ?? #2535Jen BaumannParticipantYou could play with this:
.widget h2 {
margin: 10px 0 5px;
}Jen BaumannParticipantTry 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 BaumannParticipantTry 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 BaumannParticipantThese 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 BaumannParticipantTry removing #sidebar from that section.
Jen BaumannParticipantSince 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 BaumannParticipantYou're very welcome!
Jen BaumannParticipantYou 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 BaumannParticipantI'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 BaumannParticipantYou can also find a list of developers here.
Jen BaumannParticipantThis is probably what you are looking for: http://wordpress.org/extend/plugins/be-subpages-widget/
Jen BaumannParticipantWelcome 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 BaumannParticipantThe forum is actually bbPress, a plugin for WordPress.
Jen BaumannParticipantI don't see a home-5 in the source code, but I do see home 1-4 disappear when making the window narrower.
Jen BaumannParticipantYou may be able to put something together with Multiple Post Thumbnails, but it will require writing some custom code.
Jen BaumannParticipantBasically, 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 BaumannParticipantI 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 BaumannParticipantYou need to be logged into my.studiopress.com to view the tutorials.
-
AuthorPosts