rkeshd
Forum Replies Created
-
Forum: Plugins
In reply to: publishing post on non-wp site:Is there a way ? Pulling my hair out………Plz help…
Forum: Fixing WordPress
In reply to: Theme Gets Disturbed When the Widget is AddedYou have closed div tag having id #wrapper before.make it similar to freshlife.
Forum: Installing WordPress
In reply to: no comment box after postsEither you have given wrong permission to comment on dashboard or you didn’t put comment-template in your theme.
Forum: Themes and Templates
In reply to: Style.cssit should be like this..
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'template_url' ); ?>"/mycss.css />Forum: Themes and Templates
In reply to: Remove wrap borderit’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 workForum: Themes and Templates
In reply to: Remove wrap borderModify it as
#wrap { margin: 5px auto; padding: 0; width: 980px; border:none; background: #fff; }Forum: Themes and Templates
In reply to: Different Template for Subcategory – any conditions?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
In reply to: Pulling My Hair Out — Sidebar Problemsoff 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
In reply to: Different Template for Subcategory – any conditions?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.phpThat 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
In reply to: How to create a margin around an image?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;