Gouri
Forum Replies Created
-
Forum: Your WordPress
In reply to: Check out my static site on WordPressThanks Bunty. I called it static in the sense that I did not intend to add any more content to it… and it consisted of only ‘pages’ as distinguished from ‘posts’.
Awesome design Bunty.. But why not fix those validation errors: http://validator.w3.org/check?uri=http%3A%2F%2Fsouthcast.in%2F&charset=%28detect+automatically%29&doctype=Inline&group=0
Forum: Your WordPress
In reply to: Check out my static site on WordPressOn second thought, I made it a blog, and did some fine tuning..
Forum: Themes and Templates
In reply to: changes I make in Thesis site options not savedTry doing this in the given sequence:
-
Reset the Thesis theme options to default
switch to another theme
delete the uploaded Thesis Theme
Reupload the latest version of the theme & customized
(Do not upload any previously saved site or design options)Do let me know if this helps.
Forum: Fixing WordPress
In reply to: 'Missed Schedule' problem!!!See if this helps:
http://lists.automattic.com/pipermail/wp-trac/2009-January/038071.htmlForum: Fixing WordPress
In reply to: No option to enable comments in 3.1 using Thesis 1.8Just noticed that the comments are not displaying on one of my blogs. Design option in thesis shows empty check boxes without any text beside them.
Forum: Fixing WordPress
In reply to: warning media libraryI installed hotfix plugin, it’s rocking!
Forum: Themes and Templates
In reply to: Twenty Ten Child Theme – TwentyTen AllureAwesome!
Forum: Installing WordPress
In reply to: Automatic update failedI too have experienced it on some of the blogs; may be a host specific problem. But deleting .maintenance file in the root directory clears the message.
Forum: Themes and Templates
In reply to: Twenty Ten header Title and description — Remove, how?Go to your header.php in the twenty ten template file and look for the following code:
<img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />Comment it out so that it looks like this:
<!– <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />–>Forum: Themes and Templates
In reply to: Twenty Ten Remove Header ImageGo to your header.php in the twenty ten template file and look for the following code:
<img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />Comment it out so that it looks like this:
<!– <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />–>Forum: Themes and Templates
In reply to: Twenty Ten – no Header imageGo to your header.php in the twenty ten template file and look for the following code:
<img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />Comment it out so that it looks like this:
<!– <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />–>That’s it, you’re done. Check out my photo blog where I have removed the header using this.
Forum: Themes and Templates
In reply to: Delete the html message in commentsGo to the style sheet (style.css) & look for the following piece of code:
#respond .form-allowed-tags {
color: #888;
font-size: 12px;
line-height: 18px;
}Now add the following towards the end:
display: none;So that the final code looks like this:
#respond .form-allowed-tags {
color: #888;
font-size: 12px;
line-height: 18px;
display: none;
}Let me know if this works.
Forum: Fixing WordPress
In reply to: How to remove posted date and by…Just out of curiosity: Is it possible to remove only the date and retain the author?
I have removed the both from the homepage of my photo blog.
Thanks all.Forum: Themes and Templates
In reply to: Twenty Ten: Remove "posted on" Author/Date!!Thanks.. I was able to remove them from the homepage of my photo blog. But they are showing on the single post page.. Is there a way to remove them from there also?