Footer Troubles With Internet Explorer?? HELP MEH
It seems as though the footer is shrinking up just to the end of all the widgets on my sidebar and then just cuts off my post. I need to make it obey the length of my post not the sidebar.
:confused:
Check out this example page I made on an old site of mine:
Sample Page « Health Information Center
If you view that inside Internet Explorer the footer section will swallow the post.
P.S. I should mention that I customized this page template to have the slider from the homepage be on all the other pages as well. I need it to be that way.
For example purposes Im gonna throw in the code for the page-template.php file
<?php get_header(); ?>
<!-- BEGIN SLIDER -->
<div id="slider">
<?php if(get_option('boldy_slider')!=''){
$page_data = get_page(get_option('boldy_slider'));
$content = $page_data->post_content;
echo $page_data->post_content;
}else{?>
<div style="border:1px solid #ddd; text-align:center; padding:150px 100px 0; height:219px; font-size:14px;">
This is the slider. In order to have items here you need to create a page in which to insert the images, simply one after another, setting up the link to point at ( if needed ) and text captions in the Title field. Then select the page as the "slider page" in the Theme Options Page. Make sure your images are 960px x 370px.
</div>
<?php }?>
</div>
<div style="width:960px; margin:0 auto; background:url(<?php bloginfo('template_directory'); ?>/images/bk_shadow_slider.png) 0 0 no-repeat; height:50px;"></div>
<!-- END SLIDER -->
<!-- SLIDER SETTINGS -->
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider({
effect:'random', //Specify sets like: 'fold,fade,sliceDown'
slices:15,
animSpeed:500,
pauseTime:3000,
startSlide:0, //Set starting Slide (0 index)
directionNav:true, //Next & Prev
directionNavHide:true, //Only show on hover
controlNav:true, //1,2,3...
controlNavThumbs:false, //Use thumbnails for Control Nav
controlNavThumbsFromRel:false, //Use image rel for thumbs
controlNavThumbsSearch: '.jpg', //Replace this with...
controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
keyboardNav:true, //Use left & right arrows
pauseOnHover:true, //Stop animation while hovering
manualAdvance:false, //Force manual transitions
captionOpacity:0.8, //Universal caption opacity
beforeChange: function(){},
afterChange: function(){},
slideshowEnd: function(){} //Triggers after all slides have been shown
});
});
</script>
<!-- begin colLeft -->
<div id="colLeft">
<h1><?php the_title(); ?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<!-- end colleft -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
-
snowcloud -
Thanks
{{ DiscussionBoard.errors[5141361].message }} -