Hey thanks for your reply – i realized that i have to customize all my needs in the style.css by using the correct class.
`/* tag description */
function dez_add_tag_desc() {
$get_tagdesc = tag_description(); if($get_tagdesc):
echo ‘<div style=”margin:0 0 0 0;” class=”tagdesc”>’.$get_tagdesc.'</div>’;
endif;
}
add_action(‘bp_before_blog_home’, ‘dez_add_tag_desc’);
i added some css for .tagdesc
.tagdesc h1 {font-size: 1.8em; margin: 0 0 1em;}
.tagdesc h2 {font-size: 1.7em; margin: 0 0 1em;}
.tagdesc h3 {font-size: 1.35em; margin: 0 0 1em;}
.tagdesc h4 {font-size: 1.5em; margin: 0 0 1em;}
.tagdesc body {font-family: arial, sans-serif; margin: 0px; padding: 0px; font-size: 100%; color: #555; background-color: white;}
.tagdesc body {line-height: 1.4em;}
.tagdesc p {margin: 0 0 1.625em; font-size: 1.2em;}
.tagdesc ul li {margin: 0 0 1.625em; font-size: 1.2em;}
.tagdesc a:link, a:visited {color: #ef9f2d; text-decoration: underline;}
.tagdesc blockquote:before, blockquote:after, q:before, q:after {content: “”;}
.tagdesc blockquote, q {quotes: “” “”;}
.tagdesc blockquote {font-family: Georgia, “Bitstream Charter”, serif; font-style: italic; font-size: 1.2em; font-weight: normal; margin: 0 3em 1.25em 3em; border-left: 5px solid #999; padding-left: 1em; line-height: 1.6em;}
.tagdesc blockquote em, blockquote i, blockquote cite {font-style: normal;}
.tagdesc blockquote cite {font-weight: 300; letter-spacing: 0.05em; text-transform: uppercase; font-size: 85%;}
thx for your help.