Muy buenas;
Este es el código completo de la página, no se si será esto a lo que te refieres
Código PHP:
<div id="informacion">
<div id="slider1" class="nivoSlider">
<img src="<?php echo image_path( '/uploads/eventos/' . $evento->getImagen3() ); ?>" alt="<?php echo $evento->getTitulo() ?>" />
</div><!--cerramos slider-->
<div id="contenido_submenus">
<ul class="tabs">
<?php if ( trim( strip_tags( $evento->getResultados() ) ) != '' && $evento->getEstadoEventoId() == 2 ): ?><li id="resultados_ajax"><a href="#resultados" title="<?php echo __('Resultados'); ?>" class="botonera_zona_eventos"><?php echo __('Resultados'); ?></a></li><?php endif; ?>
<?php if ( trim( strip_tags( $evento->getFechasHorarios() ) ) != '' ): ?><li id="fecha_horarios_eventos_ajax"><a href="#fecha_horarios" title="<?php echo __('Fecha y horarios'); ?>" class="botonera_zona_eventos"><?php echo __('Fecha y horarios'); ?></a></li><?php endif; ?>
<?php if ( $evento->countNoticiass() != 0 ): ?><li id="noticias_eventos_ajax"><a href="#noticias_eventos" title="<?php echo __('Noticias'); ?>" class="botonera_zona_eventos"><?php echo __('Noticias'); ?></a></li><?php endif; ?>
<?php if ( trim( strip_tags( $evento->getInformacion() ) ) != '' ): ?><li id="mas_info_ajax"><a href="#mas_info" title="<?php echo __('+ Información'); ?>" class="botonera_zona_eventos"><?php echo __('+ Información'); ?></a></li><?php endif; ?>
<?php if ( trim( strip_tags( $evento->getVentaEntradas() ) ) != '' && $evento->getEstadoEventoId() == 1 ): ?><li id="entradas_ajax"><a href="#entradas" title="<?php echo __('Venta de entradas'); ?>" class="botonera_zona_eventos"><?php echo __('+ Información'); ?></a></li><?php endif; ?>
</ul>
<div class="tab_container">
<?php if ( trim( strip_tags( $evento->getResultados() ) ) != '' && $evento->getEstadoEventoId() == 2 ): ?>
<div id="resultados" class="tab_content"><?php echo $evento->getResultados() ?></div>
<?php endif; ?>
<?php if ( trim( strip_tags( $evento->getFechasHorarios() ) ) != '' ): ?>
<div id="fecha_horarios" class="tab_content"><?php echo $evento->getFechasHorarios() ?></div>
<?php endif; ?>
<?php if ( $evento->countNoticiass() != 0 ): ?>
<div id="noticias_eventos" class="tab_content">
<p class="rojo_contacto_titulo_seccion"><?php echo __('Noticias'); ?></p>
<?php foreach( $evento->getNoticiass() as $noticia ): ?>
<?php include_partial( 'noticias/breveNoticia', array( 'noticia' => $noticia, 'class' => '' ) ); ?>
<?php endforeach; ?>
</div><!--cerramos noticias-->
<?php endif; ?>
<?php if ( trim( strip_tags( $evento->getInformacion() ) ) != '' ): ?>
<div id="mas_info" class="tab_content"><?php echo $evento->getInformacion() ?></div>
<?php endif; ?>
<?php if ( trim( strip_tags( $evento->getVentaEntradas() ) ) != '' && $evento->getEstadoEventoId() == 1 ): ?>
<div id="entradas" class="tab_content"><?php echo $evento->getVentaEntradas() ?></div>
<?php endif; ?>
</div><!--cerramos tab_container-->
</div><!--cerramos contenido submenus-->
<?php include_partial( 'default/patrocinadores', array( 'class' => 'patrocinadores2' ) ) ?>
</div><!--cerramos informacion-->