I want it on the left
On this CSS:
@media (max-width: 1024px) and (min-width: 769px)
.top-bar.top-bar-align-left .widget:first-child {
margin-left: auto;
}
Replace margin-left: auto;
with margin-right: auto;
You then add this CSS within the @media rule:
.top-bar-align-left .widget:nth-child(2) {
margin-left: unset;
margin-right: 20px;
}
So the CSS should end up with something like this:
@media (max-width: 1024px) and (min-width: 769px){
.top-bar.top-bar-align-left .widget:first-child {
margin-right: auto;
}
.top-bar-align-left .widget:nth-child(2) {
margin-left: unset;
margin-right: 20px;
}
}
A wise man once said:
"Have you cleared your cache?"