WordPress: Invertire sidebar e contenuto nel tema Twenty Twelve

Per spostare la sidebar a sinistra e la colonna del contenuto a destra nel tema Twenty Twelve si deve creare un tema figlio (guida) e aggiungere questo codice al file CSS:
@media screen and (min-width: 600px) {
    .site-content{
        float: right;
    }
    .widget-area{
        float: left;
    }
}
.ie .site-content{
    float: right;
}
.ie .widget-area{
    float: left;
}

Guida scritta da il 17/03/2015.

Le ultime guide della categoria WordPress:

comments powered by Disqus