I need to swap the div blocks es-sidebar es-content (swap bar, and base), in profile, in the news messages, in general, wherever do, whether it is possible to change everything at once?
body div#fd.es .es-container .es-sidebar {
float: right;
border-left: 1px solid #d7d7d7;
border-right: 0;
}
body div#fd.es .es-container .es-content {
display: block;
margin: 0 220px 0 0; /* INB4, .es-sidebar WIDTH IS 220px */
}
body div#fd.es .es-container .es-content .es-streams {
display: inline-block;
width: 100%;
padding: 10px 20px 0 0;
}
body div#fd.es .es-media-browser .es-sidebar + .es-content {
margin: 0 160px 0 0; /* INB4, .es-sidebar FOR THIS VIEW WIDTH IS 160px */
}
body div#fd.es .es-filterbar {
position: relative;
z-index: 2;
padding: 14px 14px 4px;
border-bottom: 1px solid #eee;
display: inline-block;
.view-search .es-container .es-container {
width: 70% !important;
}
/* Switch the sidebar and main content sides */
body div#fd.es .es-container .es-content {
float: left;
width: 74%;
}
body div#fd.es .es-container .es-sidebar {
width: 24%;
float: right;
}
/* Very Small Phones */
@media (max-width: 320px){
body div#fd.es .es-container .es-content {
width:100%;
}
}