Thanks, I was able to get the RSS feed off but I am a little confused on getting the search box off, I can’t find a code to match like the one you have above, this is my code that involves something about a search area: Could you tell me which line I need to erase?
<div id=”search-area”>
<?php if ($options[‘use_google_search’]) : ?>
<form action=”https://www.google.com/cse” method=”get” id=”searchform”>
<div><input type=”text” value=”<?php _e(‘Google Search’,’piano-black’); ?>” name=”q” id=”search-input” onfocus=”this.value=”; changefc(‘white’);” /></div>
<div><input type=”image” src=”<?php bloginfo(‘template_url’); ?>/img/search-button.gif” name=”sa” alt=”<?php _e(‘Search from this blog.’,’piano-black’); ?>” title=”<?php _e(‘Search from this blog.’,’piano-black’); ?>” id=”search-button” />
<input type=”hidden” name=”cx” value=”<?php echo $options[‘custom_search_id’]; ?>” />
<input type=”hidden” name=”ie” value=”UTF-8″ />
</div>
</form>
<?php else: ?>
<form method=”get” id=”searchform” action=”<?php bloginfo(‘home’); ?>/”>
<div><input type=”text” value=”<?php _e(‘Search’,’piano-black’); ?>” name=”s” id=”search-input” onfocus=”this.value=”; changefc(‘white’);” /></div>
<div><input type=”image” src=”<?php bloginfo(‘template_url’); ?>/img/search-button.gif” alt=”<?php _e(‘Search from this blog.’,’piano-black’); ?>” title=”<?php _e(‘Search from this blog.’,’piano-black’); ?>” id=”search-button” /></div>
</form>
<?php endif; ?>
</div>
<?php endif; ?>