Forum Replies Created
-
AuthorPosts
-
Jen Baumann
ParticipantYou 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; }
March 2, 2013 at 5:28 am in reply to: Menu Names in Mocha Theme don't align in Chrome for Mac #23702Jen Baumann
ParticipantPlease see this: http://www.studiopress.community/topic/outreach-menu-broken/.
Jen Baumann
ParticipantEssentially, 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' ),
Jen Baumann
ParticipantYou 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; }
Jen Baumann
ParticipantThis 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.
Jen Baumann
ParticipantYou're welcome!
February 26, 2013 at 9:26 am in reply to: Metro Theme – Header Image and Background Color won't change #22911Jen Baumann
ParticipantThis was taken care of through a support ticket and related to an ad network.
February 25, 2013 at 5:49 pm in reply to: Metro Theme – Header Image and Background Color won't change #22796Jen Baumann
ParticipantPlease see this Thread: http://www.studiopress.community/topic/metro-background-tiled/ regarding the background issue. The header issue fix is directly above http://www.studiopress.community/topic/metro-theme-header-image-and-background-color-wont-change/#post-22734 🙂
Jen Baumann
ParticipantHi Ruby. Is this all resolved at this point? I just wanted to check in and make sure 🙂
February 20, 2013 at 11:47 pm in reply to: Education Theme – Featured blog excerpt posts cut off on Iphone #21889Jen Baumann
ParticipantI would put it in this one: @media only screen and (max-width: 800px)
Jen Baumann
ParticipantSeems to display fine now as a jpg
http://beachbaylandscaping.co.nz/wp-content/themes/crystal/images/logo.jpgFebruary 18, 2013 at 6:22 pm in reply to: Education Theme – Featured blog excerpt posts cut off on Iphone #21159Jen Baumann
ParticipantIt looks like you have a width here that you'll need to override in the responsive section:
.featuredpage .page, .featuredpost .post { border: medium none; margin: 0 0 15px; overflow: hidden; padding: 0 0 15px; width: 600px; }
Jen Baumann
ParticipantI'm glad you're pixelating!! Love it 🙂
Jen Baumann
ParticipantHi Ruby!
For future reference, you can also submit a support ticket for issues relating to theme setup through http://my.studiopress.com/help/
It appears you have installed Genesis Slider instead of Genesis Responsive Slider. Deactivate Genesis Slider, then install this one: http://www.studiopress.com/plugins/genesis-responsive-slider. Once you have the settings, including the slider dimensions setup, run this plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/.
For your header, since you're using a wide logo, find the following css in style.css:
#header { margin: 0 auto; min-height: 100px; width: 100%; }
Change it to:
#header { background-color: #FFFFFF !important; background-size: contain !important; margin: 0 auto; min-height: 100px; width: 100%; }
Jen Baumann
ParticipantYou're welcome! It's nice when it's an easy answer 😉
PS. No need to hide. Most people don't know that!
Jen Baumann
ParticipantYou can change this under Settings > Reading
Jen Baumann
ParticipantActually the How To has instructions for both of these : )
Login my.studiopress.com and go here http://my.studiopress.com/setup/blissful-theme/
Jen Baumann
ParticipantWhat is your URL?
Jen Baumann
ParticipantRemove this from your style.css file:
.header-image #title a { background: url("images/logo.png") no-repeat scroll left center transparent; }
February 13, 2013 at 1:17 pm in reply to: Change permalink '/listings/' to '/apartments/' in AgentPress #20122Jen Baumann
ParticipantLike this:
add_filter( 'agentpress_listings_post_type_args', 'child_agentpress_listings_post_type_args' ); function child_agentpress_listings_post_type_args( $args ){ $args['labels']['name'] = 'Apartments'; return $args; }
You can pretty much take any of the args from this:
function create_post_type() { $args = apply_filters( 'agentpress_listings_post_type_args', array( 'labels' => array( 'name' => __( 'Listings', 'apl' ), 'singular_name' => __( 'Listing', 'apl' ), 'add_new' => __( 'Add New', 'apl' ), 'add_new_item' => __( 'Add New Listing', 'apl' ), 'edit' => __( 'Edit', 'apl' ), 'edit_item' => __( 'Edit Listing', 'apl' ), 'new_item' => __( 'New Listing', 'apl' ), 'view' => __( 'View Listing', 'apl' ), 'view_item' => __( 'View Listing', 'apl' ), 'search_items' => __( 'Search Listings', 'apl' ), 'not_found' => __( 'No listings found', 'apl' ), 'not_found_in_trash' => __( 'No listings found in Trash', 'apl' ) ), 'public' => true, 'query_var' => true, 'menu_position' => 6, 'menu_icon' => APL_URL . 'images/apl-icon-16x16.png', 'has_archive' => true, 'supports' => array( 'title', 'editor', 'thumbnail', 'genesis-seo', 'genesis-layouts', 'genesis-simple-sidebars' ), 'rewrite' => array( 'slug' => 'listings' ), ) ); register_post_type( 'listing', $args ); }
-
AuthorPosts