Forum Replies Created
-
AuthorPosts
-
This may occur if you aren’t using the latest version of WordPress.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookMay 5, 2013 at 12:37 pm in reply to: Metro theme: adding "Welcome Text" widget per B Gardner's code – help? #39427We resolved it through the support desk. There was just a missing brace } in the media query before the added css. Case closed!

Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi there. If you have problems like this with a theme, the best place to get help is by clicking the Get Help link when logged in to http://my.studiopress.com. This way we know about the issue, can communicate it to the development team, and can help you fix it
In your style.css change
.comment-list li ul li { margin-right: -22px; }to
.comment-list li ul li { margin-right: -1px; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIf you are having trouble with the header, please submit a support ticket at http://my.studiopress.com/help/
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi everyone. I’m going to close this thread since it seems to be causing great confusion for users. If you are having problems with your Outreach custom header, please submit a support ticket at http://my.studiopress.com/help/.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookHi. In your functions.php file find this:
/** Add top search after header */ add_action( 'genesis_after_header', 'agentpress_top_search' ); /** * Add top search widget area on Genesis after header hook * */ function agentpress_top_search() { if ( !is_front_page() && is_active_sidebar( 'top-search' ) ) { echo '<div class="top-search">'; dynamic_sidebar( 'top-search' ); echo '</div><!-- end .top-search -->'; } }Change it to
/** Add top search after header */ add_action( 'genesis_after_header', 'agentpress_top_search' ); /** * Add top search widget area on Genesis after header hook * */ function agentpress_top_search() { if ( is_active_sidebar( 'top-search' ) ) { echo '<div class="top-search">'; dynamic_sidebar( 'top-search' ); echo '</div><!-- end .top-search -->'; } }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIn the theme, you can look for border-box in the style.css file and add the following;
-moz-box-sizing: border-box; -webkit-box-sizing: border-box;
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou’re both very welcome! I’ll mark this resolved but leave it for now.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou really have to customize the cart/checkout pages for Woo to make it responsive like hiding elements of the table in the responsive media queries.
For example, you can put this inside a media query for say 400px and below depending on your theme, etc.
.shop_table .product-thumbnail { display: none; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookMarch 2, 2013 at 5:28 am in reply to: Menu Names in Mocha Theme don't align in Chrome for Mac #23702Please see this: http://www.studiopress.com/forums/topic/outreach-menu-broken/.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookEssentially, all you need to do is remove this line from single-portfolio.php
/** Force full width content layout */ add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
Then, if you want to add layout support to the portfolio post type, just change the supports line in functions.php to add genesis-layouts.
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes', 'genesis-seo', 'genesis-layouts' ),
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou can remove the margin here by changing it to 0.
#header .menu { background: none repeat scroll 0 0 transparent; display: inline-block; float: left; margin: 32px 0 0; width: auto; }Then, add it here:
#header .widget-area { float: right; margin: 32px 0 0; width: 620px; }
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookThis is a bug in the latest version of Chrome: http://code.google.com/p/chromium/issues/detail?id=166230.
While it appears to be fixed in an upcoming release, if you would like to fix it now, the fix is to remove the top margin from your ul.menu.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou’re welcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookFebruary 26, 2013 at 9:26 am in reply to: Metro Theme – Header Image and Background Color won't change #22911This was taken care of through a support ticket and related to an ad network.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook -
AuthorPosts