Beiträge von ameh23

    Hallo liebe Wordpress-Gemeinde,

    ich habe ein Problem mit meiner Startseite http://school-for-life.org/
    Seit kurzer Zeit ist der Inhalt um mehrere Zentimeter nach unter verrutscht und ich bekomme die Fehlermeldung:

    Warning: Cannot modify header information - headers already sent by (output started at /www/htdocs/v075598/index.php:5) in/www/htdocs/v075598/wp-includes/pluggable.php on line

    wenn ich auf den Home Button in der Linkliste klicke.

    Ich verwende das Theme: goGreen und eine alte Wordpress - Version.
    Vielleicht kann mir ja jemand hier helfen, da ich einfach keine Lösung finde.

    Auf der Schulseite: http://school-for-life.org/chiangmai/ tritt das Problem nicht auf.
    Envato (dort habe ich das Thema gekauft) hat mir eine Email gesendet und mich aufgefordert den js.composer zu aktualisieren - das file habe ich runtergeladen aber noch nicht auf dem webspace ersetzt.

    Vielen Dank für die Hilfe

    hallo nochmal,

    ich habe folgendes [FONT=Arial][size=10][FONT=Arial]Darstellungsproblem im IE6. [/FONT][/SIZE][/FONT]:

    wenn man http://www.schimpfgmbh.de im IE6 öffnet, sieht man das header-image erst dann , nachdem man draufgeklickt hat. (sreenshot im anhang)

    ich vermute, das könnte mit dem gesetzten hyperlink in der header php zusammenhängen, bin mir aber nicht sicher?

    schonmal danke für die hilfe und lösungsvorschläge :)

    hallo, vielen dank nochmal.
    ich habe den:

    <div id="access" role="navigation">
    <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
    <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'coraline' ); ?>"><?php _e( 'Skip to content', 'coraline' ); ?></a></div>
    <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
    </div><!-- #access -->

    code direkt nach:

    div id="branding">
    <?php
    // Check to see if the header image has been removed
    if ( get_header_image() != '' ) :
    ?>
    <a href="<?php echo home_url( '/' ); ?>">
    <?php
    // The header image
    // Check if this is a post or page, if it has a thumbnail, and if it's a big one
    if ( is_singular() &&
    has_post_thumbnail( $post->ID ) &&
    ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
    $image[1] >= HEADER_IMAGE_WIDTH ) :
    // Houston, we have a new header image!
    echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
    else : ?>
    <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
    <?php endif; // end check for featured image or standard header ?>
    </a>
    <?php endif; // end check for removed header image ?>
    </div><!-- #branding -->

    in header.php des themes gesetzt - und oberhalb gelöscht. allerdings hatte es keine auswirkung auf auf die anordnung.