Title: jon1938's Replies | WordPress.org

---

# jon1938

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Making a custom page template post query](https://wordpress.org/support/topic/making-a-custom-page-template-post-query/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/making-a-custom-page-template-post-query/#post-1379932)
 * <?php
    $wp_query = new WP_Query(); $wp_query->query(array(‘category__and’=>array(
   3), ‘showposts’=>5, ‘paged’=>$paged)); $more = 0; ?>
 * This worked displays Category 3, 5 posts per page. The $more = 0; at the end 
   ensures that the “read more” link shows. Hope this helps someone in the future.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Hybrid Custom Query page question](https://wordpress.org/support/topic/page-that-displays-posts-from-a-single-category/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/page-that-displays-posts-from-a-single-category/#post-1338188)
 * Yeah been thinking about it. The site I’m working on is for a non-profit… Maybe
   if they pay me 😉
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Change the RSS icon in 2.9](https://wordpress.org/support/topic/change-the-rss-icon-in-29/)
 *  [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/change-the-rss-icon-in-29/#post-1320784)
 * I’m certainly no pro, but I just had to fix this same thing due to the 2.9 update.
   It reverted it back to default for some reason… So I’d suggest taking out a pad
   of paper and noting this since future updates may revert it.
 * Go to your wp-includes folder and find the images folder in there. There’s a 
   file called “rss.png”. That’s the file that wordpress uses for that little rss
   feed icon in the default widget.
 * If you want to do more customization you can go the CSS route (by calling the
   class) or edit the default-widgets.php file itself (probably normally better 
   to edit the CSS file). But you can edit the PHP file directly too. To do that,
   just go into the default-widgets.php file and look for the code relevant to the
   rss widget. Just do a search for “rss.png” within the php file since we know 
   that’s the image file the php file uses. In there you’ll find the code that controls
   the formatting, etc.:
 * …
 * “[<img style=’background:orange;color:white;border:none;’ width=’14’ height=’14’ src=’$icon’ alt=’RSS’ />](https://wordpress.org/support/users/jon1938/replies/$url?output_format=md)
   [$title](https://wordpress.org/support/users/jon1938/replies/$link?output_format=md)“;
 * …
 * Just change the background:orange to background:none (or whatever color you want
   it to be) and you’re done. Also, note the height and width is set to 14 pixels.
   That, of course, can be changed too… Anything can be… as I’m sure you now understand.
   As I mentioned above, you would probably be better served to just edit the CSS
   file. If you have issues with that this will always work. Hope that helps.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Leviathan Theme and Overflow](https://wordpress.org/support/topic/leviathan-theme-and-overflow/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/leviathan-theme-and-overflow/#post-1299167)
 * html { min-width: 960px; }
 * at the top of the css fixed it. Now it correctly gets the horizontal scroll bar
   once the window gets smaller than 960px.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Atahualpa – Move login / register / logout to right side page menu](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/#post-1238182)
 * hmmm, no I don’t think that will work because I need it to change to the correct
   button (login or logout) depending on whether the user has logged in.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Atahualpa – Move login / register / logout to right side page menu](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/#post-1238176)
 * ahh thanks I will give that a try.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Atahualpa – Move login / register / logout to right side page menu](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/#post-1238172)
 * [http://www.atroxen.com/jzschau/](http://www.atroxen.com/jzschau/)
 * Right now I have it in the sidebar. I am trying to move it to the menu bar (aligned
   far right).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Atahualpa – Move login / register / logout to right side page menu](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/atahualpa-move-login-register-logout-to-right-side-page-menu/#post-1238171)
 * But I am trying to add it to the page menu. Not just the sidebar.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Author Bio in Atahualpa](https://wordpress.org/support/topic/author-bio-in-atahualpa/)
 *  Thread Starter [jon1938](https://wordpress.org/support/users/jon1938/)
 * (@jon1938)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/author-bio-in-atahualpa/#post-1238021)
 * …. i think i figured it out…
 * Just put 2 </div>’s before the code for the bio. That seems to have worked 😀

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