• 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

greenecon

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 - 1 through 20 (of 25 total)
1 2 →
  • Author
    Posts
  • June 7, 2013 at 8:36 am in reply to: Ordered list style #44538
    greenecon
    Member

    Yes that helped.  Well, more than helped. Solved it. Thanks so much.

    June 7, 2013 at 6:22 am in reply to: Modifying "address" style #44506
    greenecon
    Member

    Worked for me. I needed to make it smaller, as we use it for disclaimers, and other info that doesn't need to be full size.  So thanks!

    March 27, 2013 at 3:36 pm in reply to: customizing category pages #31605
    greenecon
    Member

    I apologize for being such a git, but I"m not sure what you think I should do with this code. [pardon the language].

    Simple hooks has a section that seems like it would be a good place to place your code, but not sure what part of the code to put.  [image below].  Assuming if this was the right to code to put here, then we'd just check the 'execute shortcodes' , but not php one.

    We put in in our test site functions.php. It didn't break the site, but wp-tiles isn't working there anyway.  We have little to no content which I am assuming is the problem and trying to fix that.  Anyway, where does this code go?  Tana

    March 26, 2013 at 10:56 am in reply to: customizing category pages #31341
    greenecon
    Member

    Totally confused.  I was trying to understand what you recommended. Are you suggesting that what you thought would work won't work?  Or that I totally misunderstood what to do with the information you provided.

    Your info below:::::::::

    What you’ll need to do is add this code to a custom function which includes a conditional tag for your category archive pages.

    if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles();

    Use the conditional tag for category pages, is_category() http://codex.wordpress.org/Conditional_Tags#A_Category_Page

    There’s no template files for category pages in the child theme which is better because you need to use custom functions.

    WordPress Developer & Consultant
    Brad Dalton @ WP Sites – Click Here to Get Genesis Child Theme Tips Delivered.

    March 26, 2013 at 7:24 am in reply to: customizing category pages #31295
    greenecon
    Member

    This is what I understand from what you wrote.

    I put in my functions.php

    if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles();

    Not sure where the following goes: 'Use the conditional tag for category pages, is_category()'

    I am thinking this goes on the category page somewhere, so would be 'is_category(12)' for our news category.  Since we want to use on many category pages, do we customize each?  Thanks.  t.

    March 26, 2013 at 7:12 am in reply to: Premise: page is a dead end. #31292
    greenecon
    Member

    We did hear from Premise, and this is what they said.

    We should use the [show-to accesslevel=full] [/show-to] tags better, so now we have directions for people who get 'lost', but is below the content for those who do have access.  thanks for asking.  Premise rocks.

    February 28, 2013 at 8:49 am in reply to: .entry-content a { /*conflict*/ #23268
    greenecon
    Member

    thanks. t.

    February 21, 2013 at 3:04 pm in reply to: Image will not align right #22057
    greenecon
    Member

    IT WORKED IT WORKED IT WORKED!  Jump, jump, shout, jump, shout, jump, jump.

    February 21, 2013 at 3:02 pm in reply to: Image will not align right #22055
    greenecon
    Member

    Looks like resolved.  I had two of these posts going under 2 categories as it took so long for anyone to answer.  The other guy said to add:

    .home .entry-content img {
    float: left;
    padding-right: 20px;
    }

    Which fixed the home page problem, then I could remove the float left from .entry-content and add it back to post.image. Everything is now working.

    February 21, 2013 at 2:48 pm in reply to: Image will not align right #22052
    greenecon
    Member

    You are becoming my hero. Will try this.  Tana

    February 21, 2013 at 2:46 pm in reply to: Image will not align right #22051
    greenecon
    Member

    I am trying to have the images within a post have the ability to align right.  I asked the question, and made changes above which did indeed allow us to flush images within posts to align right.

    HOWEVER, we then had the category and home page images (the top section, not the two columns below) no longer wrap text.  So we have added the

    flush: left;

    back in where we took it out, and that works fine, but now the images within posts no longer will align right.  We're back where we started.  Tana

    February 21, 2013 at 2:42 pm in reply to: CSS changes take long time to update on site #22049
    greenecon
    Member

    Good question. I have cleared browser cache, but not thought about plug-in cache.  How do I figure that out? And thanks. Tana

    February 21, 2013 at 7:15 am in reply to: Image will not align right #21936
    greenecon
    Member

    Did what you suggested, but it made the images on the  home page and the category pages no longer wrap.  Here's what happened below.

    /* atk 2-2013 Recommend we remove 'float left' but that messed with home page */

    .entry-content img {
    float: left;
    padding-right: 20px;
    max-width: 100%;
    }

    .avatar,
    .featuredpage img,
    .featuredpost img,
    /* removed 'float left' to hopefully let images go either way. messed with category pages ATK 2-20-13  */
    .post-image {
    float: left;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 4px;
    }

    February 21, 2013 at 7:11 am in reply to: Image will not align right #21935
    greenecon
    Member

    Worked to make images within posts align either right or left, but then the home page and category pages were messed up.  The text no longer wrapped around the left side image.   Not sure what to do now.

    /* atk 2-2013 Recommend we remove 'float left' but that messed with home page */

    .entry-content img {
    float: left;
    padding-right: 20px;
    max-width: 100%;
    }

    /* Recommend we remove 'float left' but that messed with category pages  ATK 2-20-13  */
    .post-image {
    float: left;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 4px;

    February 10, 2013 at 12:56 pm in reply to: Remove Trackbacks from posts #19399
    greenecon
    Member

    I really apologize. For some reason when I checked this setting I thought i had to do both.  Thanks for you patience.  t.

    February 9, 2013 at 11:10 am in reply to: Remove Trackbacks from posts #19237
    greenecon
    Member

    We want comments. Just not trackbacks.

    February 8, 2013 at 4:53 pm in reply to: Image will not align right #19107
    greenecon
    Member

    You did it exactly right.  It just started looking right. Thanks.  I very much appreciate it.

    February 8, 2013 at 4:48 pm in reply to: Generate Theme: home page not working #19105
    greenecon
    Member

    This is what's in my CSS.  I even took it to 40% and made no difference.

    .genesis-grid-even {
    float: right;
    padding: 0 0 15px;
    width: 43%;
    }
    }

    .genesis-grid-odd {
    clear: both;
    float: left;
    padding: 0 0 15px ;
    width: 43%;

    February 8, 2013 at 2:41 pm in reply to: Generate Theme: home page not working #19050
    greenecon
    Member

    Didn't.  Sometimes I think that changes in the CSS don't seem to show up in the template. I am wondering if that is because this is responsive.  Or a conflict with WordPress 3.1x.  I had to add some code to the functions.php so that i could limit the category on the home page to the one we wanted, and fix the wrong number of posts.  [Help from StudioPress].  The home.php doesn't work anymore, which is kidna annoying.

    Any other ideas?  t.

    February 8, 2013 at 2:31 pm in reply to: Image will not align right #19046
    greenecon
    Member

    1: here is a URL:

    http://www.thegreeneconomy.com/uncle-sam-wants-your-clean-tech/

    The image at the top of the page should align right, but it is not.  There is an image further down with a caption that is aligning right. This is the first time that has happened, so I suspect that caption may override the problem.

    2: I changed css t:

    .post-image {
    0 0 30px -20px !important;
    }

    Made no difference.  Sometimes it seems that changes to CSS doesn't change anything.  It could be Generate.

     

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 25 total)
1 2 →

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