• 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

Au Coeur

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 - 81 through 100 (of 100 total)
← 1 2 3 4 5
  • Author
    Posts
  • January 29, 2013 at 9:21 pm in reply to: Remove Space in Genesis Mobile Header #16281
    Au Coeur
    Member

    Did you solve this? I'm not seeing the white space.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 29, 2013 at 9:19 pm in reply to: Logo Positioning #16280
    Au Coeur
    Member

    No problem. 🙂


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 29, 2013 at 9:16 pm in reply to: Need help with some style/design changes for AgentPress theme – pay for help #16278
    Au Coeur
    Member

    What is the site? Some of these are fairly simple CSS changes, I'm sure if you posted individual questions with a link to the site people would help you through the forums and then you won't need to spend money.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 29, 2013 at 9:13 pm in reply to: Featured Posts Amplified Plugin Help: Filtering Custom Taxonomies? #16276
    Au Coeur
    Member

    You can determine the term_id by hovering over the term on the taxonomy edit page and looking at the URL. You'll see "tag_id=" and a number in the URL.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 29, 2013 at 9:04 pm in reply to: Logo Positioning #16272
    Au Coeur
    Member

    #title-area {
    margin-top: 23px;
    }

    Looks right to me, however your image looks like it might hang off the bottom.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 29, 2013 at 9:00 pm in reply to: Logo Positioning #16271
    Au Coeur
    Member

    You can add a margin-top to your title div to position your logo down. It looks like you will need to make the image smaller if you want it to fit completely in the black bar, though.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 20, 2013 at 9:30 pm in reply to: Increasing Sidebar Width in Pretty Young Thing #13407
    Au Coeur
    Member

    Looks like you figured this out?


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 20, 2013 at 9:18 pm in reply to: nextgen search function #13402
    Au Coeur
    Member

    You can add a search.php file to your child theme and add the code there to override/modify Genesis search functions.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 20, 2013 at 9:15 pm in reply to: Drop down at the top of the Page #13401
    Au Coeur
    Member

    I have used http://thethefly.com/wp-plugins/thethe-sliding-panels/ on several sites, including my own.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 20, 2013 at 9:10 pm in reply to: Taxonomy Images #13400
    Au Coeur
    Member

    I couldn't get it to work with wp_get_attachment_image, but I realized I didn't actually need it to output in $post_meta, so long as it just appeared to be in the same section. So, I just added it another way. On the off chance that someone else is looking for how to make this work, here is what I did.

    add_action('genesis_before_post_content', 'child_bucket_rating');
    function child_bucket_rating() {
    if( is_single() ) {
    print apply_filters( 'taxonomy-images-list-the-terms', '', array(
    'after' => '',
    'after_image' => '',
    'before' => 'Nantucket Bucket Rating:',
    'before_image' => '',
    'image_size' => 'full',
    'taxonomy' => 'rating',
    ) );
    }}

    Thanks for the help cdils


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 19, 2013 at 8:24 pm in reply to: Multiple Genesis Responsive Sliders #13202
    Au Coeur
    Member

    Thanks. I'll see if I can get this to work...no luck yet. I may just need to find a different plugin.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 19, 2013 at 8:22 pm in reply to: Genesis Featured Post Widget #13201
    Au Coeur
    Member

    What is the website?

    I have " .featuredpage .page .featuredpost .post" in my CSS; the styling there that impacts the stair-stepping. The image border is going to be changed in an image section, perhaps .featuredpost img.

    Depending upon the browser you are using, you may be able to right click on the element and "inspect" it to find out which CSS rules are impacting it.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 19, 2013 at 1:52 pm in reply to: Taxonomy Images #13132
    Au Coeur
    Member

    Yes, that is what I mean.  I tried a few different things with the code to see if I was misunderstanding and that is all it seems to do. This is what is currently being used:
    /** Customize the post meta function */
    add_filter( 'genesis_post_meta', 'post_meta_filter' );
    function post_meta_filter($post_meta) {
    if ( is_single() ) {
    $post_meta = ' wp_get_attachment_image( $term->224, ‘full’ )
    [post_terms before="Price: " taxonomy="price"] [post_terms before="Open/Available: " taxonomy="open-dates"] [post_terms before="Ages: " taxonomy="ages"]';
    return $post_meta;
    }
    if ( is_category() ) {
    $post_meta = '[post_terms before="Price: " taxonomy="price"][post_terms before="Ages: " taxonomy="ages"][post_terms before="Open/Available: " taxonomy="open-dates"] ';
    return $post_meta;
    }
    }


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 18, 2013 at 2:13 am in reply to: Grid Loop Orderby Issues #12813
    Au Coeur
    Member

    Great, thanks!


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 18, 2013 at 12:16 am in reply to: Taxonomy Images #12806
    Au Coeur
    Member

    I don't know...I am not having any luck with this at all.  When I try inserting wp_get_attachment_image into the $post_meta, it just outputs as text.


    Mother. Web & Graphic Designer. Lactation Consultant. Blogging about how it all fits together, most recently from northern Colorado. Visit my blog or my design site.

    January 16, 2013 at 11:44 pm in reply to: Clients With Zero Computer Abilities #12571