Created
February 13, 2017 08:35
-
-
Save bigdigital/1c281270ae198a12af44bc57f0634c61 to your computer and use it in GitHub Desktop.
Change side header order The7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.header-bar{ | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
} | |
.header-bar .branding{ | |
-webkit-box-ordinal-group: 2; | |
-moz-box-ordinal-group: 2; | |
-ms-flex-order: 2; | |
-webkit-order: 2; | |
order: 2; | |
} | |
.header-bar #primary-menu{ | |
-webkit-box-ordinal-group: 3; | |
-moz-box-ordinal-group: 3; | |
-ms-flex-order: 3; | |
-webkit-order: 3; | |
order: 3; | |
} | |
.header-bar .mini-widgets{ | |
-webkit-box-ordinal-group: 1; | |
-moz-box-ordinal-group: 1; | |
-ms-flex-order: 1; | |
-webkit-order: 1; | |
order: 1; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment