Hola, ve a tu plantilla index y busca algo como esto:
Código:
<div class="forums" style="float:left; width: 984px;">
{$forums}
</div>
Y elimina el contenedor de {$forums} de modo que te quede únicamente así:
Luego ve a tu plantilla
nav y elimina
Código:
<a class="buttons" style="float: right; display: none;" title="Hide sidebar"><i style="font-size: 14px;" class="fa fa-compress fa-fw"></i></a>
<a class="clickedbuttons" style="float: right; display: block;" title="Show sidebar"><i style="font-size: 14px;" class="fa fa-expand fa-fw"></i></a>
Para desaparecer el botón controlador de ocultar/mostrar sidebar, ya que eliminaste el sidebar eso queda sobrando.
Por último vas a tu plantilla
headerinclude y elimina el siguiente código:
Código:
<script type="text/javascript">
jQuery(function($) {
$(".clickedbuttons").hide();
$(".buttons").click(function() {
$(".sidebar").animate({height: "hide", opacity: 0}, 500,
function() {
$(".forums").animate({width: "984px"}, 500);
});
$(this).hide();
$(".clickedbuttons").show();
$.cookie("sidebar","collapsed", {expires: 365});
return false;
});
$(".clickedbuttons").click(function() {
$(".forums").animate({width: "724px"}, 500,
function() {
$(".sidebar").animate({height: "show", opacity: 1}, 500);
});
$(this).hide();
$(".buttons").show();
$.cookie("sidebar","expanded", {expires: 365});
return false;
});
if($.cookie("sidebar") == "collapsed") {
$(".buttons").hide();
$(".clickedbuttons").show();
$(".forums").css("width","984px");
$(".sidebar").hide();
};
});
</script>
Ese es el script que hace el efecto de ocultar/mostrar sidebar, también queda sobrando.
Eso sería todo, saludos