To change your theme structure you must change the .../page.css Snip.
The basic styles in this file are:
Example: Changing the page-portlet-1 from right to left
- Open your currently used themes page.css Snip.
#page-content {
float: left;
margin-top: 10px;
margin-left: 5px;
height: auto;
width: 55%;
max-width: 55%;
}#page-portlet-1 {
background-color: white;
float: right;
width: 23%;
border: 1px dashed #999999;
line-height: 14px;
padding: 10px;
margin-top: 10px;
margin-bottom: 5px;
margin-right: 10px; overflow: hidden;
}
- Now, change the float positions of #page-content and #page-portlet-1.
#page-content {
float: right;
margin-top: 10px;
margin-left: 5px;
height: auto;
width: 55%;
max-width: 55%;
}#page-portlet-1 {
background-color: white;
float: left;
width: 23%;
border: 1px dashed #999999;
line-height: 14px;
padding: 10px;
margin-top: 10px;
margin-bottom: 5px;
margin-right: 10px; overflow: hidden;
}
- Possibly clean your cache and reload the page.