Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/07/2014, 17:07
AwanteCL
 
Fecha de Ingreso: julio-2014
Mensajes: 1
Antigüedad: 9 años, 9 meses
Puntos: 0
Pregunta Banner en Wordpress

Amigos, mucho gusto. Soy webmaster de la página mas popular dedicada al equipo de mis amores www.awante.cl.

Les cuento. Mantengo la página hace un par de años, ésta está montada en wordpress, la cual autónomamente fui manejándola. En fin, estoy tratando de meter un banner en el área del menú por que está muy pálido el diseño.

Quería ver si me podrían ayudar con esto.



Código PHP:
<?php
/**
 * The Header for Customizr.
 *
 * Displays all of the <head> section and everything up till <div id="main-wrapper">
 *
 * @package Customizr
 * @since Customizr 1.0
 */
?>
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) | !(IE 8)  ]><!-->
<html <?php language_attributes(); ?>>                          
<!--<![endif]-->

    <?php 
        
//the '__before_body' hook is used by TC_header_main::$instance->tc_head_display()
        
do_action'__before_body' ); 
    
?>

    <body <?php body_class(); ?> <?php echo tc__f('tc_body_attributes' 'itemscope itemtype="http://schema.org/WebPage"'?>>
    
        <?php do_action'__before_header' ); ?>

           <header class="<?php echo tc__f('tc_header_classes''tc-header clearfix row-fluid'?>" role="banner">
        
            <?php 
            
//the '__header' hook is used by (ordered by priorities) : TC_header_main::$instance->tc_logo_title_display(), TC_header_main::$instance->tc_tagline_display(), TC_header_main::$instance->tc_navbar_display()
                
do_action'__header' ); 
            
?>

        </header>

        <?php 
             
//This hook is filtered with the slider : TC_slider::$instance->tc_slider_display()
            
do_action '__after_header' )
        
?>
Necesito poner un banner justo donde muestro el rectángulo rojo en la imagen arriba, ya sabiendo esto podré modificar las fuentes si es que se me viera mal con el banner el menú, este es el código de la página Header de Wordpress.


Agradecería su ayuda masters,


Quedo atento,


Saludos.-

Última edición por AwanteCL; 26/07/2014 a las 17:12