• Hallo,
    bei mir (http://www.chubin.net/) steht unter dem Header-Bild das Wort " Home" auf einen schwarzem Band. Wie kann ich beide ( Home und das Band ) weg bekommen.
    ------------------------------------------------------------------

    • Anzeige

    Hallo!

    Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.

    • ✔️ Schnelle Ladezeiten (optimiert für WordPress & Co.)
    • ✔️ Deutsche Server & DSGVO-konform
    • ✔️ Persönlicher Support (kein 0815-Ticket-System)

    Mehr erfahren

  • servus,

    Du kannst entweder das Menüs in der PHP-Datei durch Löschen des folgenden Codes entfernen:

    PHP
    <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', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></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 -->

    Oder aber die Anzeige des Menübereichs unterdrücken, in dem Du in der style.css bei Zeile 371 (beim Selektor #access) den Wert display: block auf display:none änderst.

    Code
    #access { 
    display: none;
     }

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!