Forum Replies Created
-
Mod
I will be adding my full code soon
Adding it where? Do you mean you will be updating the appearance of your blog?
Mod
I would forgo the standard category page and use something like Kalin’s Post List plugin, which might work much better for your site anyway. I use it and love it. Here’s a tutorial: http://blog.kjodle.net/2011/10/30/kalins-post-list-a-brief-tutorial/
Mod
In reply to: post links at both top and bottom of category page
December 30, 2011 at 11:47 pm #21844Use a Graphene action hook widget. See this tutorial:
http://blog.kjodle.net/2011/11/04/graphene-action-hook-widgets-an-easy-way-to-modify-your-blog/
You will probably want to use the “graphene_after_post_content” action hook area in the “loop.php” file.
You will need to install the PHP widget as I mention in my tutorial.
Paste this code into a text widget:
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class="post-nav clearfix">
<p id="previous"><?php previous_post_link(); ?></p>
<p id="next-post"><?php next_post_link(); ?></p>
<?php do_action('graphene_post_nav'); ?>
</div>
<?php endif; ?>I don’t have the time to test this, but it should work in theory. Let us know how it goes.
Mod
I get a 403 error when I click on the above link.
Mod
You can always change the width of anything just by targeting it in your child theme’s css:
#top-bar, #footer {width: 100%;}but you have to be careful because everybody has a different size monitor. So it may look great on your monitor, but if someone else has a more narrow monitor, it will appear squeezed together, and if their monitor is wider, it will appear spaced too far apart.
Mod
In reply to: Point a custom php page template to use/inherit OneColumn-No SideBar format???
December 30, 2011 at 11:31 pm #21882Still, it seems easier just to use a heading (whatever level you would like) and enter the links yourself. Not difficult, especially if you aren’t going to change them.
Mod
I don’t know how to do it with the default search widget, but you can always “view source” and copy the code from the search widget and paste it into a text widget. In this case, you would want to change
value="Search"to
value=""which will make the box appear empty.
Mod
That is why you need the PHP widget. See this:
http://blog.kjodle.net/2011/11/04/graphene-action-hook-widgets-an-easy-way-to-modify-your-blog/
Mod
You’re welcome. I added a couple of tags to help others looking for solutions here. (And thank you for marking this thread “resolved”.)
Mod
ahhhh…plugin issue. Glad you figured it out.
I believe that xfbml is unique to Facebook, which means it can’t possibly be compatible with everything. iframes, on the other hand, are more universal, and therefore, work with a broader range of coding schemes.
The only solution may be to wait for FB to upgrade/update their code so it plays nice with others, but my impression is that they are waiting for everyone else to change their code to play nice with FB.
