Suporte » Temas e templates » Problema com divs

  • renato6

    (@renato6)


    Boa tarde,
    queria colocar o menu e o logotipo no tema Twentyten fora do wrapper, só que estou com problemas para o fazer e não percebo porquê.
    Passei a abertura da div wrapper para baixo desses conteúdos, mas ele continua a ficar agarrado ao wrapper.

    <body <?php body_class(); ?>>

    <?php $heading_tag = ( is_home() || is_front_page() ) ? ‘h1’ : ‘div’; ?>
    <!– ajustar posição –>

    <<?php echo $heading_tag; ?> id=”site-title”>
    <span>
    ” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><img src=”http://localhost/wordpress/wp-content/uploads/2012/04/logotipo_site.png”/&gt;

    </span>

    </<?php echo $heading_tag; ?>>

    <?php //bloginfo( ‘description’ ); ?>

    <!– barra de menu–>
    <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”>–>“><?php _e( ‘Skip to content’, ‘twentyten’ ); ?></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 –>

    <div id=”wrapper” class=”hfeed”>
    <div id=”header”>
    <div id=”masthead”>
    <div id=”branding” role=”banner”>

    <?php
    // Check if this is a post or page, if it has a thumbnail, and if it’s a big one
    if ( is_singular() && current_theme_supports( ‘post-thumbnails’ ) &&
    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 );
    elseif ( get_header_image() ) : ?>
    <img src=”<?php header_image(); ?>” width=”<?php echo HEADER_IMAGE_WIDTH; ?>” height=”<?php echo HEADER_IMAGE_HEIGHT; ?>” alt=”” />

    <?php endif; ?>
    </div><!– #branding –>

    </div><!– #masthead –>
    </div><!– #header –>

    <div id=”main”>

    Espero que me possam ajudar,
    cumprimentos

  • O tópico ‘Problema com divs’ está fechado a novas respostas.