Yep,
new theme-version (wil be up if all works):
<form action="<?php echo esc_url(home_url('/')); ?>" class="searchform" method="get" role="search">
<input size="27" type="text" title="<?php echo (get_search_query()!="" ? get_search_query() : __('Search', 'ci_theme') ); ?>" class="s" name="s">
<a class="searchsubmit"><img src="<?php echo get_template_directory_uri(); ?>/images/search.png" alt="<?php _e('GO', 'ci_theme'); ?>"></a>
</form>
and the one online now is:
<form action="<?php echo esc_url(home_url('/')); ?>" class="searchform" method="get" role="search">
<input size="27" type="text" title="<?php echo (get_search_query()!="" ? get_search_query() : __('Site Search', 'ci_theme') ); ?>" class="s" name="s">
<!-- <a class="searchsubmit"><img src="<?php echo get_template_directory_uri(); ?>/images/search.png" alt="<?php _e('GO', 'ci_theme'); ?>"></a> -->
<a class="searchsubmit"><img src="http://www.podium-arts.com/wp-content/themes/wp_pinfinity5-v1.4/images/search.png" alt="<?php _e('GO', 'ci_theme'); ?>"></a>
</form>
NB: the part that is now commented out is the original of this version, the other one is what I thought might work...
:-)))