Noch ein paar Hinweise: In der functions.php (im Verzeichnis /wp-content/plugins/buddypress/bp-themes/bp-default) ab Zeile 248 ist folgendes zu finden:
function bp_dtheme_add_custom_header_support() {
// Set the defaults for the custom header image (http://ryan.boren.me/2007/01/07/custom-image-header-api/)
define( 'HEADER_TEXTCOLOR', 'FFFFFF' );
define( 'HEADER_IMAGE', '%s/_inc/images/default_header.jpg' ); // %s is theme dir uri
define( 'HEADER_IMAGE_WIDTH', 1250 );
define( 'HEADER_IMAGE_HEIGHT', 125 );
...
Probier es einfach aus, die Konstante HEADER_IMAGE_HEIGHT zu ändern.
In functions.php ab Zeile 267 ist auch noch folgendes zu finden:
function bp_dtheme_admin_header_style() { ?>
<style type="text/css">
#headimg {
position: relative;
color: #fff;
background: url(<?php header_image() ?>);
-moz-border-radius-bottomleft: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-webkit-border-bottom-right-radius: 6px;
margin-bottom: 20px;
height: 100px;
padding-top: 25px;
}
...
Alles anzeigen
Wahrscheinlich muss hier height für #headimg entpsrechend angepasst werden.
Ich habe das jetzt nicht ausprobiert! Das überlasse ich Dir.
Ob dann auch noch default.css (wie im vorherigen Beitrag beschrieben) zu ändern ist, musst Du ausprobieren.
cu, guido