Title: rkeshd's Replies | WordPress.org

---

# rkeshd

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [publishing post on non-wp site:](https://wordpress.org/support/topic/publishing-post-on-non-wp-site/)
 *  Thread Starter [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/publishing-post-on-non-wp-site/#post-1707352)
 * Is there a way ? Pulling my hair out………Plz help…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Theme Gets Disturbed When the Widget is Added](https://wordpress.org/support/topic/theme-gets-disturbed-when-the-widget-is-added/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/theme-gets-disturbed-when-the-widget-is-added/#post-1616209)
 * You have closed div tag having id #wrapper before.make it similar to freshlife.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [no comment box after posts](https://wordpress.org/support/topic/no-comment-box-after-posts/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/no-comment-box-after-posts/#post-1616628)
 * Either you have given wrong permission to comment on dashboard or you didn’t 
   put comment-template in your theme.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Style.css](https://wordpress.org/support/topic/stylecss-3/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/stylecss-3/#post-1612693)
 * it should be like this..
    `<link rel="stylesheet" type="text/css" media="all"
   href="<?php bloginfo( 'template_url' ); ?>"/mycss.css />`
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove wrap border](https://wordpress.org/support/topic/remove-wrap-border/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/remove-wrap-border/#post-1559029)
 * it’ll work..
 * border is specified in other place also.
    you may give element style in your 
   template file as
 * `<div style="border:none;" id="wrap">`
    and it’ll work
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove wrap border](https://wordpress.org/support/topic/remove-wrap-border/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/remove-wrap-border/#post-1559025)
 * Modify it as
 *     ```
       #wrap {
       	margin: 5px auto;
       	padding: 0;
       	width: 980px;
       	border:none;
       	background: #fff;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Different Template for Subcategory – any conditions?](https://wordpress.org/support/topic/different-template-for-subcategory-any-conditions/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/different-template-for-subcategory-any-conditions/#post-1533967)
 * you must have to define either every child category by a cat-id.php page or every
   parent category by cat-id.php. and rest of all undefined category will use category.
   php or archive.php or index.php (whichever it finds in your current Theme’s directory
   according to priority)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pulling My Hair Out — Sidebar Problems](https://wordpress.org/support/topic/pulling-my-hair-out-sidebar-problems/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/pulling-my-hair-out-sidebar-problems/#post-1533965)
 * off course,its due to difference in template codes,In recipes’ category template,
   footer div is outside of the div having id=”page”, while in research category
   template,footer div is inside the div having id=”page”.
 * Remove this difference..and problem will be solved..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Different Template for Subcategory – any conditions?](https://wordpress.org/support/topic/different-template-for-subcategory-any-conditions/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/different-template-for-subcategory-any-conditions/#post-1533961)
 * In the case of categories, the hierarchy is fairly simple. For instance, suppose
   the slug of the Category in question is default and the Category ID is 6. The
   Template Hierarchy specifies that WordPress will use the first Template file 
   it finds in your current Theme’s directory from the following list:
 *  1. category-slug.php (Note: available with Version 2.9)
    2. category-ID.php 
   3. category.php 4. archive.php 5. index.php
 * That is, if you do not have a category-slug.php (lets say category-news.php),
   WordPress will check for a category-ID.php (like category-6.php), and so on.
 * So, if you want to make the Category whose ID number is 6 look different from
   what it is currently (and different from other Category pages), you would want
   to create a category-6.php file. If you want to make all Category pages look 
   different from other archive pages (such as date and author archives), then you
   would want to create or modify the category.php file. If you want to make changes
   to the look of all archive pages, you can create or modify the archive.php file.
   And if you modify the index.php file, you will affect your entire blog.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to create a margin around an image?](https://wordpress.org/support/topic/how-to-create-a-margin-around-an-image/)
 *  [rkeshd](https://wordpress.org/support/users/rkeshd/)
 * (@rkeshd)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/how-to-create-a-margin-around-an-image/#post-1533960)
 * just add following line in .alignleft class(line no.50) in style.css(under wp-
   content/themes/socrates/style.css):
 * margin:0 10px 10px 0;

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