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 -->