Title: vex's Replies | WordPress.org

---

# vex

  [  ](https://wordpress.org/support/users/vex/)

 *   [Profile](https://wordpress.org/support/users/vex/)
 *   [Topics Started](https://wordpress.org/support/users/vex/topics/)
 *   [Replies Created](https://wordpress.org/support/users/vex/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/vex/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/vex/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/vex/engagements/)
 *   [Favorites](https://wordpress.org/support/users/vex/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Help.. My sidebar keeps going below](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/)
 *  [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/#post-507483)
 * .navigation replace that with .yournavingationdivhere (might have a # in front
   of it) do the same for content area. thats all i can know.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Help.. My sidebar keeps going below](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/)
 *  [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/#post-507303)
 * in your CSS file… heres an example
 * .navigation {
    float: right; }
 * .content {
    float: left; }
 * just put float:right; in your main navigation area in your CSS and float: left;
   in you main content area in your CSS.
 * hope that explains it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Help.. My sidebar keeps going below](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/)
 *  [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-my-sidebar-keeps-going-below/#post-507271)
 * in your stylesheet put float: right in your navigation container and float left
   in your content containers
 * ive had a bug once where it did that with the floats, but try that if you dont
   have floats
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [help including functions….](https://wordpress.org/support/topic/help-including-functions/)
 *  Thread Starter [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-including-functions/#post-507253)
 * I got it including the file. Now it skips a line on my page [http://vxlabs.com](http://vxlabs.com)
 * the blue line isn’t suppose to be there. I can’t fix that. I think it’s something
   to do with the <p> </p> tags
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [help including functions….](https://wordpress.org/support/topic/help-including-functions/)
 *  Thread Starter [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-including-functions/#post-507243)
 * i fixed it…
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [help including functions….](https://wordpress.org/support/topic/help-including-functions/)
 *  Thread Starter [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-including-functions/#post-507241)
 * now I get this
 * ‘Warning: main(/staff/wp-blog-header.php) [function.main]: failed to open stream:
   No such file or directory in /home/vxlabs/public_html/staff/wp-content/themes/
   default/news.php on line 1
 * Warning: main(/staff/wp-blog-header.php) [function.main]: failed to open stream:
   No such file or directory in /home/vxlabs/public_html/staff/wp-content/themes/
   default/news.php on line 1
 * Warning: main() [function.include]: Failed opening ‘/staff/wp-blog-header.php’
   for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/vxlabs/
   public_html/staff/wp-content/themes/default/news.php on line 1
 * Fatal error: Call to undefined function: have_posts() in /home/vxlabs/public_html/
   staff/wp-content/themes/default/news.php on line 2′
 * my news.php file is in staff/wp-content/themes/default/news.php
 * heres news.php
 * ‘<?php include(“/staff/wp-blog-header.php”); ?>
    <?php if (have_posts()) : ?>
   <?php while (have_posts()) : the_post(); ?>
 *  <div class=”chead” id=”post-<?php the_ID(); ?>”>
    <h2>” rel=”bookmark” title
   =”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
   </h2>
    <small
   ><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small>
 *  <div class=”cbody”>
    <?php the_content(‘Read the rest of this entry »’); ?> 
   </div>
 *  <p>Filed under <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”,‘
   | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments»’);?
   ></p>
    </div>
 *  <?php endwhile; ?>
    <?php else : ?> <div class=”chead”> <h2>Not Found</h2> </
   div> <div class=”cbody”> <p>Sorry, but you are looking for something that isn’t
   here.</p> </div> <div class=”cfoot”> </div>
 * <?php endif; ?>’
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [help including functions….](https://wordpress.org/support/topic/help-including-functions/)
 *  Thread Starter [vex](https://wordpress.org/support/users/vex/)
 * (@vex)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/help-including-functions/#post-507236)
 * No one knows?

Viewing 7 replies - 1 through 7 (of 7 total)