Nizzylikes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing width of contentThank you so much for helping me!
Unfortunately the code doesn’t do anything, though. I added it to the bottom of my stylesheet, without succes!Forum: Themes and Templates
In reply to: Changing width of contentWell I’d like my content to be a bit wider. My pictures show up too small for my liking! I’d like the content box to be around 900px.
Thanks for helping!Forum: Themes and Templates
In reply to: Changing width of contentThank you!! That makes sense.
But what are the things I’d have to do to make it work correctly?Forum: Themes and Templates
In reply to: Changing width of contentAnyone? 🙁
Forum: Themes and Templates
In reply to: Changing width of contentIt’s DeniseJoanne.com 🙂
Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageHmmm, well that just moves the whole thing to the left, which still doesn’t really look good.
I thought I’d just make the spacing between the thumbnails bigger to get it a bit more centered overall. The spacing is set to 7px right now, and anything above 7 causes the sixth thumbnail to move to the next line. Even through there is plenty space left!Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageHi Petra!
It’s okay, I’m not in a rush. 🙂
Ok, I removed the border bottom line, and I added the code to the plugin to move it 35 pixels to the right. The only problem is that the code that was added to the plguin settings also changes the alignment of the related posts in a single post, which causes the sixth thumbnail to move down to the next line. (Screenshot)On the homepage it looks perfect, but on the single page it doesn’t look that good. Isn’t there a code that just centers the whole thing, so it will look good in both the homepage and the single post page?
I’m sorry to keep bugging you!
Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageHi Petra,
Thanks for the fast response! Yes, I have tried that, and it puts the related posts on top of the post, before the title.
Yes, that’s basically what I’d like to achieve! I do like that horizontal line because it seperates the posts from each other, but if it has to go away for the sake of the related posts, I’d be fine with that.
Thanks!
DeniseForum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageOopsies, in my last post I said I put the code right after
theme_page_navigation();but I meanttheme_get_next_post();Anyway, here’s some screenshots:
The placement of the Related Posts code in my home.php:
http://i59.tinypic.com/1zqdg5z.jpgAnd a screenshot of how it looks on my blog:
http://i59.tinypic.com/1o7rj8.pngNotice how the related posts show up right under the post? It should appear above the grey horizontal line!
I left the code where it is in the screenshot above. So if you want to see it in action, you can take a look at my blog!
I hope we can resolve it soon, because I don’t like how the related posts appear under the grey line and they’re not aligned with the pictures and text in the posts!
Thank you!!
Forum: Fixing WordPress
In reply to: My posts won't show up anymore!Ah, nevermind! I managed to fix it right after posting this!
Forum: Fixing WordPress
In reply to: My posts won't show up anymore!Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageI found that if I put the
wp_related_posts();
right after
theme_page_navigation();
in the home.php, the related posts do show on the main page. The only problem is that they show below the post, instead of at the end of the post. I’m not sure how to explain, haha!
Like, they show below the box in which the post is displayed!Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home page<?php get_header(); ?>
<?php get_sidebar(‘top’); ?>
<?php
if (have_posts()) {
/* Display navigation to next/previous pages when applicable */
if (theme_get_option(‘theme_’ . (theme_is_home() ? ‘home_’ : ”) . ‘top_posts_navigation’)) {
theme_page_navigation();
}
?>
<?php
for ($i = 0; $i < $wp_query->post_count; $i++) {
theme_get_next_post();
}
?>
<?php
/* Display navigation to next/previous pages when applicable */
if (theme_get_option(‘theme_bottom_posts_navigation’)) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_sidebar(‘bottom’); ?>
<?php get_footer(); ?>Here’s the content of my home.php 🙂
Thank you!
Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageHi Petra!
Thanks for your response. I did exactly what you said, but unfortunately it doesn’t seem to work! Nothing changed on the blog!
Denise
Forum: Plugins
In reply to: [WordPress Related Posts] Related posts home pageHi Petra!
The content of my index.php is
<?php get_header(); ?> <?php get_sidebar('top'); ?> <?php if (have_posts()) { /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) { theme_page_navigation(); } /* Start the Loop */ while (have_posts()) { the_post(); get_template_part('content', get_post_format()); } /* Display navigation to next/previous pages when applicable */ if (theme_get_option('theme_bottom_posts_navigation')) { theme_page_navigation(); } } else { theme_404_content(); } ?> <?php get_sidebar('bottom'); ?> <?php get_footer(); ?>Also, these are the theme’s files:
http://tinypic.com/view.php?pic=359abo5&s=8#.VOYbunbQDVoThank you!