Causing an Align to left
-
I’m having trouble getting my website to stay within the container div that I’ve created with the “glass” effect. It has no problem staying put in Chrome & Firefox but when it comes to ANY version of iE, it just aligns to left.
I’ve tried everything but it seems the only thing that will solve this problem is to remove the <?php the_content(); ?> from the html.
I’ve also tried pulling the content of the blogs posts via:
<?php $args = array( 'numberposts' => 6, 'post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date"); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <div class="events"> <p><strong><?php the_date(); ?></strong></p> <p><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> <p><?php the_content(); ?></p> </div> <?php endforeach; ?>
And having:
<?php require('wordpress/wp-blog-header.php');?>
in my header.Could someone please help my! I’m completely lost.
[Website URL: https://bfatest.site90.com/blog%5D
This is a free hosting version of the website i’m using while testing the site.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Causing an Align to left’ is closed to new replies.