Hi Ilaria, in Sela, we could use some custom CSS to move the #tertiary
div to the top with flexbox. The only possible drawback is that anyone using Internet Explorer will only see the change if they are on version 10 or later.
#page {
display: flex;
flex-direction: column;
box-orient: vertical;
display: -webkit-box;
-webkit-flex-direction: column;
-webkit-box-orient: vertical;
display: -webkit-flex;
display: -moz-box;
-moz-flex-direction: column;
-moz-box-orient: vertical;
display: -ms-flexbox;
-ms-flex-direction: column;
-ms-box-orient: vertical;
}
#masthead {
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
-ms-flex-order: 1;
-webkit-order: 1;
order: 1;
}
#tertiary {
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-ms-flex-order: 2;
-webkit-order: 2;
order: 2;
}
#content {
-webkit-box-ordinal-group: 3;
-moz-box-ordinal-group: 3;
-ms-flex-order: 3;
-webkit-order: 3;
order: 3;
}
#colophon {
-webkit-box-ordinal-group: 4;
-moz-box-ordinal-group: 4;
-ms-flex-order: 4;
-webkit-order: 4;
order: 4;
}
The alternate to that would require the creation of a Child Theme and then moving things around within some of the theme php script files.