Hi Helga & Co.
I have a searchform function which I guess is a filter. I found the function in widget-extensions.php but have no idea how to stylize that function filter/widget thing.
Here's the instance:
function searchbar(){ ?>
<div id="menu-searchbar" class="aside main-aside-flush">
<img src="http://axiom-media.com/work/fdb/wp-content/themes/feelingDodgerBlue/images/bgsearch.jpg" alt="<?php bloginfo('name');?>"
<?php thematic_search_form();?>
</div>
<?php }
add_action('thematic_abovemainasides','searchbar');
Do I somehow insert a "class=something-I-made-up" into the <?php thematic_search_form();?>
php string above?
Is that how people approach styling PHP blog objects?