• 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 - 101 through 120 (of 288 total)
← 1 2 3 … 5 6 7 … 13 14 15 →
  • Author
    Posts
  • January 7, 2013 at 10:11 pm in reply to: Using custom field and category to populate blog page #10265
    Jen Baumann
    Participant

    Sure, here's a tutorial: http://dreamwhisperdesigns.com/genesis-tutorials/add-content-genesis-blog-page-template/ to keep content at the top of the blog page.

    If you want to explore custom post types you should check out http://wpsmith.net/ and http://www.billerickson.net/blog/.

    January 7, 2013 at 9:23 pm in reply to: Minimum theme – how to add post thumbnails? #10260
    Jen Baumann
    Participant

    See this thread: http://www.studiopress.community/topic/minimum-featured-image-help/

    January 7, 2013 at 8:34 pm in reply to: Genesis Update Footer Issues!! #10258
    Jen Baumann
    Participant

    The shadowing that is showing on your site even now is due to the invalid markup I mentioned in your other thread.

    January 7, 2013 at 8:25 pm in reply to: CSS Fix Help! #10257
    Jen Baumann
    Participant

    You need to fix your HTML markup http://validator.w3.org/check?uri=http%3A%2F%2Fuberblogging.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0

    January 7, 2013 at 6:44 pm in reply to: CSS Fix Help! #10235
    Jen Baumann
    Participant

    🙂

    #text-6 .widget-wrap {
      padding: 10px;
    }
    January 7, 2013 at 6:39 pm in reply to: Minimum THeme – portolio doesn't show – get 404 #10233
    Jen Baumann
    Participant

    Did you resave your WordPress permalinks?

    January 7, 2013 at 6:36 pm in reply to: Removing Footer #10232
    Jen Baumann
    Participant

    Genesis code needs to run before the child theme can. Unless you are putting the footer code before the init line. It should just go toward the bottom.

    When you tested on the live site, did you disable total cache? Your footer is in the right location for this to work, that's why I wanted a url 🙂

    January 7, 2013 at 3:45 pm in reply to: Alter Title alignment #10191
    Jen Baumann
    Participant

    It looks like you have tried the custom header option at one point. I see this in your source code:

    #header {
      background: url("") no-repeat scroll 0 0 transparent;
    }

    Your title (Header Text) is probably turned off under Appearance > Custom Header. Check your settings there and click restore original header as well.

    January 7, 2013 at 1:36 pm in reply to: edit taxonomy box #10161
    Jen Baumann
    Participant

    Thank you for the like! 🙂

    You don't necessarily need the .taxonomy-description p. It depends on if you need to control any margin or padding added to it otherwise. That's completely optional and up to you!

    January 7, 2013 at 10:37 am in reply to: Mobile responsive problems – iPad Landscape #10135
    Jen Baumann
    Participant

    You're welcome! You will get the hang of it :0) Takes practice!

    January 7, 2013 at 10:19 am in reply to: Removing Footer #10131
    Jen Baumann
    Participant

    What's your url?

    January 7, 2013 at 10:18 am in reply to: Mobile responsive problems – iPad Landscape #10130
    Jen Baumann
    Participant

    You still have some 1140px widths you need to deal with:

    .wrap {
      margin: 0 auto;
      width: 1140px;
    }
    #footer-widgets .wrap {
      background-color: #FFFFFF;
      margin: 0 auto;
      overflow: hidden;
      padding: 40px 0 0;
      width: 1140px;
    }
    January 7, 2013 at 7:07 am in reply to: Mobile responsive problems – iPad Landscape #10100
    Jen Baumann
    Participant

    Annaedv, If you could open your own thread, that would be great, it is going to be a different issue.

    You need to trump it with width: 100% instead of the max-width.

    January 6, 2013 at 10:55 pm in reply to: Removing Footer #10060
    Jen Baumann
    Participant

    If you haven't added any other functions to move it, then that should work. Any plugins that may be altering things?

    January 6, 2013 at 10:51 pm in reply to: Alter Title alignment #10058
    Jen Baumann
    Participant

    You really should try to do this with the built in title settings and CSS. You lose SEO and the clickable home link by not using it. I'm not sure what you were trying to do that didn't work, but CSS is pretty robust as far as what you can do with it.

    January 6, 2013 at 10:18 pm in reply to: Removing Footer #10046
    Jen Baumann
    Participant

    What theme are you using?

    January 6, 2013 at 10:02 pm in reply to: Adding Featured Video to Minimum Homepage #10037
    Jen Baumann
    Participant

    You can pretty much follow Brian's add a widget tutorial here to register the widget: http://www.briangardner.com/welcome-text-widget/

    You'll have to do something like this to change the function in functions.php to include it:

    /** Add the featured image section */
    add_action( 'genesis_after_header', 'minimum_featured_image' );
    function minimum_featured_image() {
    	if ( is_home() ) {
    		   genesis_widget_area( 'welcome-text', array(
                           'before' => '<div class="welcome-text widget-area">',
                        ) );
    	}
    	elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
    		echo '<div id="featured-image">';
    		echo get_the_post_thumbnail($thumbnail->ID, 'header');
    		echo '</div>';
    	}
    }

    Plus whatever css you need.

    Note that code didn't paste well so pay attention to the function already in your file.

    January 6, 2013 at 9:51 pm in reply to: Alter Title alignment #10033
    Jen Baumann
    Participant

    Have you filled out your title under Settings > General? The site title should be filled out there.

    January 6, 2013 at 9:48 pm in reply to: Mobile responsive problems – iPad Landscape #10031
    Jen Baumann
    Participant

    You need to override the 1140 width on #page-title and #footer-widgets in the responsive section. Those are the 2 causing the issue.

    January 6, 2013 at 9:29 pm in reply to: agency, wierd menu css thing #10029
    Jen Baumann
    Participant

    Remove this from your style.css file:

    .menu-primary li li:last-child a, .menu-secondary li li:last-child a, #header .menu li li:last-child a {
      border: medium none;
    }
  • Author
    Posts
Viewing 20 posts - 101 through 120 (of 288 total)
← 1 2 3 … 5 6 7 … 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

© 2025 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