Hola
sweety-cyv,
poder, se puede. SIn embargo hay que usar javascript + CSS para conseguirlo, creo que en tu caso lo más recomendado sería usar el diseño "Clean" que es mucho más abierto en cuanto a posicionamiento del menú.
Igualmente, si tu intención es seguir con butterfly, te dejo un código que estuve probando para cambiar la posición del menú. Obtendrás algo así:
Pega el código en
"Diseño" / "Ajustes de diseño" / "Mostrar configuración avanzada" / "Texto sobre en diseño":
Código: <style>
body > table[width="100%"], body > table[width="100%"] + div, body > table[height="102"]{
max-width: 1000px;
margin: 0 auto;
}
.edit_bg_navi{
padding: 10px 0;
}
.edit_headline_nav > table, .headline3{
width: auto !important;
}
.headline3 > table > tbody > tr{
display: block;
float: left;
}
.edit_nav_main{
background: none !important ;
}
.headline3 > table > tbody > tr a{
display: block;
padding: 10px;
padding-right: 15px;
background: #FFF;
border-left: 5px solid #E5E5E5;
}
.headline3 > table > tbody > tr a:hover{
border-color: #CECECE;
}
.edit_nav_main_left, .edit_nav_headline2, .nav_bar_right{
display: none !important;
}
.edit_navi_container > table{
border-spacing: 0 !important;
}
.edit_page_bg > table{
width: 100% !important;
}
.edit_content_headline3{
display: none !important;
}
.edit_bg_middle{
padding-right: 10px;
width: auto !important;
}
.cont > div{
width: auto !important;
}
.edit_bg_rightbox{
width: 182px !important;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function() {
$('body > table[width="100%"] > tbody > tr:first').after($('td.edit_bg_navi')).wrap('<tr></tr>');
});
</script>