Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    Oops…forgot this:

    I love this theme with it’s many customizations as I am a novice. I am trying to customize my posts to have justified text. Option not in the text options (align).

    This code should help:

    .entry-content p {
    text-align: justify;
    text-justify:inter-word;
    }

    Keep in mind that justified text can be harder to read (especially on screen) and that not all browsers handle it well. These articles might interest you:

    http://www.css3.com/css-text-justify/

    http://stackoverflow.com/questions/315845/should-i-avoid-using-text-align-justify

    http://www.webmasterworld.com/css/3248536.htm

    Mod

    First hint: use Firebug.

    Second hint:

    Try this in your child theme style sheet or custom CSS:

    table#kpg-albums tr, table#kpg-albums td {
    border: 0 none;
    }
    Mod

    In reply to: Title beneath featured image, breadcrumbs beneath title

    #26729

    I’m trying to place an image above the title. Is there a way to call the post’s featured image (if one exists) before the post’s title?

    Try an action hook widget along with the PHP widget. Drag a PHP widget to the appropriate action hook widget area (something above the title) and use this code:

    <?php the_post_thumbnail(); ?>

    This link will show you how to style the thumbnail size: http://codex.wordpress.org/Post_Thumbnails#Styling_Post_Thumbnails

    Or you can use this custom css:

    .attachment-post-thumbnail {style info;}

    Not tested; YMMV.

    I’m also trying to place breadcrumbs beneath the post title, before the content. Is there a way to position breadcrumbs between the title and the content? I’m using Breadcrumb NavXT.

    Again, action hook widget area and the PHP widget.

    Try this code in the PHP widget:

    <div class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
    bcn_display();
    }?>
    </div>

    You might want to change the class of the <div> (.my-breadcrumbs for instance) so you can style your breadcrumbs how you like and hide the ones the plugin is adding.

    Again, not tested; YMMV. And someone may come up with a simpler method.

    Mod

    In reply to: Footer widget h3 border radius not applying

    #26892

    Thanks, Ken, that was the trick.

    You know, I could have sworn that I tried that once already. It’s working now, that’s the important thing.

    Thanks again.

    Mod

    In reply to: How to display Press Releases in the Widget Area

    #26869

    Sorry, that’s not a list of checkboxes. The link categories will appear in a pop-up menu.

    Mod

    In reply to: How to display Press Releases in the Widget Area

    #26868

    Nope, not Quickpress.

    In your Dashboard, look to the left. The links icon is just below the media gallery and just above the pages icon.

    Nobody ever seems to use this feature of WordPress–including me. That’s why it took me so long to remember it. But it’s handy.

    About the widget: yep, it’s the one marked “Blogroll”. You’ll need to create some links with a different category. Then, when you drag that widget over to a widget area, you’ll get the option from a list of checkboxes to choose whichever link categories you would like.

    QuickPress — I haven’t thought about that in a long time. I’ll have to play around with it some.

    Mod

    Use Graphene’s Homepage Panes option.

    Mod

    In reply to: How to display Press Releases in the Widget Area

    #26866

    Actually, you can create links from your dashboard, assign them to a unique link category (“releases”) and then create use the “Links” sidebar widget to place them anywhere in a widget-ready area.

    Mod

    In reply to: Tag Archive only shows one post on Graphene 1.6

    #23159

    <block>Reapplied the “patch”.

    Actually, the 1.6.2 update is a maintenance release, so you shouldn’t need to do this.

    You don’t need to post your style sheet — we can see that using “View Source”. But this should work; I use Graphene 1.6.2 with a child theme and the Gtranslate plugin with no problems. It is possibly, a plugin conflict between Gtranslate and some other plugin.

    Mod

Viewing 10 posts - 3,951 through 3,960 (of 5,839 total)