Hey. On the blog page the three sidebar items appear at the bottom of the page instead of the right...any ideas?
Blog posts - side bar appears at footer of the page
7 posts from 3 voices-
Posted 2 years ago #
-
To add, it's the blog post page...the actual post. The page that displays the posts is fine.
Posted 2 years ago # -
Hey!
What's the page URL?
Have you made any changes to the theme files?
If you disable all your plugins, does the problem fix itself?
Regards,
JamesPosted 2 years ago # -
I haven't tried to remove the plugins...
Posted 2 years ago # -
Hey!
Somehow the sidebar code has moved within the main content area on the URL you provided.
Have you modified single.php at all?
Best regards,
JamesPosted 2 years ago # -
Nope:
<?php
get_header();
$teaser = get_post_meta($post->ID, "teaser", true);
if($teaser != ""){ ?>
<div class="additional_info">
<h2><?php echo $teaser; ?></h2>
</div>
<?php } ?><div id="main">
<div class="wrapper">
<div class='box box_medium box1'>
<?php
if (have_posts()) :
while (have_posts()) : the_post();
$width = '600';
$lightbox = array('','');
$frontpage_image = get_post_meta($post->ID, "frontpage-image", true);
if($frontpage_image != "") $size = @getimagesize($frontpage_image);if($frontpage_image != "" && ($size[0] > $width || !isset($size[0])))
{
$lightbox[0] ='';
$lightbox[1] ='';if($k_options['general']['tim'] == 1){
$resizepath = get_bloginfo('template_url')."/timthumb.php?src="; #timthumb path
$resize_options1 = "&w=$width&h=$height&zc=1";$frontpage_image = $resizepath.$frontpage_image.$resize_options1;
}}
?><div class='entry'>
<h2>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></h2>
<div class="entry-head">
<span class="categories"><?php the_category(', ') ?></span>•<span class="date">on <?php the_time('F jS, Y') ?></span>•<span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?><?php edit_post_link('Edit', ' ,', ''); ?></span>
</div><?php
if($frontpage_image != "") echo $lightbox[0].''.$lightbox[1];
the_content('read more');
?></div> <!--end entry-->
<div class='entry commententry'>
<?php comments_template(); ?>
</div>
<?php
endwhile; else: ?>
<div class="entry">
<h2>Nothing Found</h2>
<p>Sorry, no posts matched your criteria.</p>
</div><!--do not delete-->
<?php endif; ?></div> <!--end box_medium-->
<?php get_sidebar(); ?>
</div><!--end wrapper-->
<?php get_footer(); ?>Posted 2 years ago # -
This may not apply in your case, but sometimes I've had content drop to the bottom of the page when one or more of the elements is wider than the defined sidebar area, regardless of theme. For me, it has usually been an image that is just a few pixels too wide. Sometimes it is a widget that defines itself wider than your sidebar area.
Again, I could be totally wrong in this case, but it might be worth checking. Try deleting bits of content until everything pops back into place. I don't know if text could do it, but you might also try shortening titles to a single, short word as a test.
Posted 2 years ago #
Reply
You must log in to post.














