Title: Joshua Ray's Replies | WordPress.org

---

# Joshua Ray

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [theme With Non Reloading Frames Built In](https://wordpress.org/support/topic/theme-with-non-reloading-frames-built-in/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/theme-with-non-reloading-frames-built-in/#post-4458544)
 * I’ve used this method before to load in content without a full refresh.. sounds
   like your trying to accomplish the same thing as the music site in the example..
   
   [http://css-tricks.com/video-screencasts/81-ajaxing-a-wordpress-theme/](http://css-tricks.com/video-screencasts/81-ajaxing-a-wordpress-theme/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Root Relative URLs] Error with wp_mail function](https://wordpress.org/support/topic/error-with-wp_mail-function/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/error-with-wp_mail-function/#post-3603292)
 * Had to make the above edit also to fix gravity forms submission issues.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Theme Changes Won't Load Unless I'm Logged In](https://wordpress.org/support/topic/theme-changes-wont-load-unless-im-logged-in/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/theme-changes-wont-load-unless-im-logged-in/#post-3882722)
 * looking at your source code it appears you are running a caching plugin.
    `<!--
   Cached page generated by WP-Super-Cache on 2012-12-04 14:15:44 -->` Under the
   plugin settings you should be able to delete the plugins cache. This usually 
   fixes these types of issues in my experience.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [right sidebar has moved to the bottom of the page](https://wordpress.org/support/topic/right-sidebar-has-moved-to-the-bottom-of-the-page/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/right-sidebar-has-moved-to-the-bottom-of-the-page/#post-3183864)
 * igorlaszio,
    the issue is still with the width of #primary.. it was set to 100%
   before which is a relative measurement { 100% of the available space } now you
   have an explicit width 1200px. #primary is essentially a wrapper for your list
   of posts so you would have to make it smaller than the overall site wrapper if
   you want the sidebar to be to the right.
 * #page { 1200px }
    #primary { 885px } #secondary { 300px }
 * Try this out with firebug or chrome developer tools and you can see this fixes
   the issue.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [right sidebar has moved to the bottom of the page](https://wordpress.org/support/topic/right-sidebar-has-moved-to-the-bottom-of-the-page/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/right-sidebar-has-moved-to-the-bottom-of-the-page/#post-3183853)
 * It looks like your container div #primary has a width of 1200px which is pushing
   down the sidebar.. If you remove the width on that div the sidebar aligns to 
   the right again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [trying to delete a comment box](https://wordpress.org/support/topic/trying-to-delete-a-comment-box/)
 *  [Joshua Ray](https://wordpress.org/support/users/pdxollo/)
 * (@pdxollo)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/trying-to-delete-a-comment-box/#post-3183759)
 * From the posts page you can click quick edit on a specific post and then un-check
   the “allow comments” check box to disable comments on a specific post.
 * If you want to remove comments from all posts and pages you can edit your theme
   and remove :
 * <?php if ( comments_open() ) : ?>
    <?php comments_template(); ?>
 * <?php endif; ?>
 * from single.php and page.php

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