hi,
I'm trying to code a logo above the sidebar of my thematic style
I have written the folowing code in the functions file:
function thematic_logo_image() {
echo '<div id="logo-image"><img src="' ;
echo bloginfo('stylesheet_directory');
echo '/images/logo.jpg" /></div>';
}
add_action('thematic_before_widget_area','thematic_logo_image');
this puts the logo in the position I want, but it forces my text-widget that I have in "primary" to under my container and it removes all it's styles
I'm realy confused about this, so if anyone could give me a help with it...