• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Jen Baumann

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 288 total)
← 1 2 3 … 13 14 15 →
  • Author
    Posts
  • March 2, 2013 at 5:38 am in reply to: responsive with woocommerce #23703
    Jen Baumann
    Participant

    You 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 #23702
    Jen Baumann
    Participant

    Please see this: http://www.studiopress.community/topic/outreach-menu-broken/.

    March 2, 2013 at 5:21 am in reply to: Add sidebar to Portfolio interior pages? #23701
    Jen Baumann
    Participant

    Essentially, 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' ),
    March 2, 2013 at 4:58 am in reply to: Outreach Menu Broken #23700
    Jen Baumann
    Participant

    You 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;
    }
    February 28, 2013 at 10:44 am in reply to: Outreach Menu Broken #23303
    Jen Baumann
    Participant

    This 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.

    February 26, 2013 at 9:27 am in reply to: Executive Slider not responsive #22912
    Jen Baumann
    Participant

    You're welcome!

    February 26, 2013 at 9:26 am in reply to: Metro Theme – Header Image and Background Color won't change #22911
    Jen Baumann
    Participant

    This 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 #22796
    Jen Baumann
    Participant

    Please 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 🙂

    February 20, 2013 at 11:50 pm in reply to: Executive Slider not responsive #21890
    Jen Baumann
    Participant

    Hi 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 #21889
    Jen Baumann
    Participant

    I would put it in this one: @media only screen and (max-width: 800px)

    February 19, 2013 at 12:04 am in reply to: Header Not Showing In Some Browsers #21216
    Jen Baumann
    Participant

    Seems to display fine now as a jpg
    http://beachbaylandscaping.co.nz/wp-content/themes/crystal/images/logo.jpg

    February 18, 2013 at 6:22 pm in reply to: Education Theme – Featured blog excerpt posts cut off on Iphone #21159
    Jen Baumann
    Participant

    It 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;
    }
    February 18, 2013 at 6:17 pm in reply to: HELP! i took my site down!! #21156
    Jen Baumann
    Participant

    I'm glad you're pixelating!! Love it 🙂

    February 18, 2013 at 6:09 pm in reply to: Executive Slider not responsive #21153
    Jen Baumann
    Participant

    Hi 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%;
    }
    February 15, 2013 at 11:31 pm in reply to: Change number of posts showing on category page #20639
    Jen Baumann
    Participant

    You're welcome! It's nice when it's an easy answer 😉

    PS. No need to hide. Most people don't know that!

    February 14, 2013 at 9:20 pm in reply to: Change number of posts showing on category page #20451
    Jen Baumann
    Participant

    You can change this under Settings > Reading

    February 14, 2013 at 9:19 pm in reply to: Two Super Easy Questions about the Blissful Theme #20450
    Jen Baumann
    Participant

    Actually the How To has instructions for both of these : )

    Login my.studiopress.com and go here http://my.studiopress.com/setup/blissful-theme/

    February 14, 2013 at 9:12 pm in reply to: Executive Slider not responsive #20449
    Jen Baumann
    Participant

    What is your URL?

    February 13, 2013 at 5:58 pm in reply to: Education Header #20182
    Jen Baumann
    Participant

    Remove 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 #20122
    Jen Baumann
    Participant

    Like 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 );
    
    	}
  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 288 total)
← 1 2 3 … 13 14 15 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble