I am looking at all the demos and do not see one with the logo on the right side and menu on the left side. Is there a template like that? I saw another person ask for the same thing and the response said to customize the .css and the code was given. I'm not sure where to insert it.
<style>@media (min-width: 992px) {
#logo { float: right; }
#primary-menu { float: left; }
#header.full-header #logo {
padding-right: 0;
margin-right: 0;
border-right: 0;
padding-left: 30px;
margin-left: 30px;
border-left: 1px solid #EEE;
}
#header.transparent-header.full-header #logo { border-left-color: rgba(0,0,0,0.1); }
#header.full-header #primary-menu > ul {
float: right;
padding-right: 0;
margin-right: 0;
border-right: 0;
padding-left: 15px;
margin-left: 15px;
border-left: 1px solid #EEE;
}
#header.transparent-header.full-header #primary-menu > ul { border-left-color: rgba(0,0,0,0.1); }</style>
}</style>
