Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/08/2011, 16:44
Avatar de el_tigre
el_tigre
 
Fecha de Ingreso: febrero-2006
Ubicación: Perú
Mensajes: 1.044
Antigüedad: 18 años, 3 meses
Puntos: 8
De acuerdo quitar espacio de viñetas

Estoy intentando editar el "sidebar.php" y el CSS de mi plantilla para poder quitar el espacio que deja a la izquierda.....y no doy....alguien puede echarme un cable por favor...

La sección de NOTICIAS y EQUIPO DE LA SEMANA tienen un espacio corrido a la derecha VER

sidebar.php
Código PHP:
<!-- begin sidebar -->

<div id="sidebar">

    <div class="newsletter">
    
        <!--To enable the eNews &amp; Upates feature, go to your WP dashboard and go to Design -> Revolution Church Options and enter your Feedburner ID.-->

        <h2>eNews &amp; Updates</h2>
        <p>Sign up to receive breaking news <br /> as well as receive other site updates!</p><form id="subscribe" action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><input type="text" value="Enter your email address..." id="subbox" onfocus="if (this.value == 'Enter your email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter your email address...';}" name="email"/><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=<?php $feedburner_id get_option('revchurch_feedburner_id'); echo $feedburner_id?>" name="url"/><input type="hidden" value="eNews Subscribe" name="title"/><input type="submit" value="GO" id="subbutton" /></form>    
    
    </div>
    
    <!--To determine what video is shown on the homepage,  remove the arrows and go to your WP dashboard and go to Presentation -> Revolution Music Options and enter your video code here.
    
    <div class="video">
        
        <h3>Featured Video</h3>
        <?php $video get_option('revchurch_video'); echo stripslashes($video); ?>
        
    </div>
    
    -->
    
    <div class="adsense">
    
        <!--To activate your Google AdSense ad, go to your WP dashboard and go to Design -> Revolution Church Options and enter your Google Adsense Code.-->
            
        <?php $adsense_300 get_option('revchurch_adsense_300'); echo stripslashes($adsense_300); ?>
            
    </div>
    
    <div class="widgetarea">
    
    <ul id="sidebarwidgeted">
    
    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>
    
        <li id="recent-posts">
        <h2>Recent Posts</h2>
            <ul>
                <?php wp_get_archives('type=postbypost&limit=5'); ?> 
            </ul>
        </li>
        
    <?php endif; ?>
    
    </ul>
    
    </div>

    <?php include(TEMPLATEPATH."/sidebar_left.php");?>
    
    <?php include(TEMPLATEPATH."/sidebar_right.php");?>
    
</div>

<!-- end sidebar -->