Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/04/2013, 15:10
XeNonWoN
 
Fecha de Ingreso: marzo-2005
Mensajes: 35
Antigüedad: 19 años, 2 meses
Puntos: 0
Respuesta: Quitar columna en theme Hotgames 2.0

Gracias por tu respuesta pero tras hacer esos cambios la web no cambia en nada, sigue exactamente igual, por si no has descargado el theme aqui te dejo el apartado del .css donde creo que hay que cambiar:

Código HTML:
#container {
	width: 960px;
	margin: 15px auto 0 auto;
}

#main {
	padding: 15px;	
    background: #fff;
}

#main-fullwidth {
    padding: 15px;
    background: #fff;
}

#content {
    overflow: hidden;
    float: left;
    width: 460px;
    margin-left: 235px;
}

#sidebar-primary {
    overflow: hidden;
	float: left;
    width: 220px;
    margin-left: -695px;
}

#sidebar-secondary {
    overflow: hidden;
	float: right;
    width: 220px;
    margin-left: 15px;

Quizas el fallo esta en quitar el bloque izquierdo, no se si lo hice pues el sidebar.php era asi:

Código HTML:
<?php global $theme; ?>

<div id="sidebar-primary">

    <?php
        if(!dynamic_sidebar('sidebar_primary')) {
            /**
            * The primary sidebar widget area. Manage the widgets from: wp-admin -> Appearance -> Widgets 
            */
            $theme->hook('sidebar_primary');
        }
        $theme->hook("sidebar_primary_after");
    ?>
    
</div><!-- #sidebar-primary -->


<div id="sidebar-secondary">

    <?php
        if(!dynamic_sidebar('sidebar_secondary')) {
            /**
            * The secondary sidebar widget area. Manage the widgets from: wp-admin -> Appearance -> Widgets 
            */
            $theme->hook('sidebar_secondary');
        }
    ?>
    
</div><!-- #sidebar-secondary --> 
Y lo deje asi:

Código HTML:
<?php global $theme; ?>

<div id="sidebar-secondary">

    <?php
        if(!dynamic_sidebar('sidebar_secondary')) {
            /**
            * The secondary sidebar widget area. Manage the widgets from: wp-admin -> Appearance -> Widgets 
            */
            $theme->hook('sidebar_secondary');
        }
    ?>
    
</div><!-- #sidebar-secondary --> 
__________________
Jugador de Counter Strike: Source.