Forum Replies Created
-
Mod
In reply to: Great Theme – A few questions about tables, and justification
March 25, 2012 at 10:14 pm #26886Oops…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
Mod
In reply to: Great Theme – A few questions about tables, and justification
March 25, 2012 at 9:49 pm #26885First 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
March 25, 2012 at 9:44 pm #26729I’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-breadcrumbsfor 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
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
Sorry, that’s not a list of checkboxes. The link categories will appear in a pop-up menu.
Mod
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
In reply to: How to make my site have posts in squares instead of all in a row.
March 25, 2012 at 7:22 pm #26890Use Graphene’s Homepage Panes option.
Mod
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
<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
Maybe this plugin?
