Here is a pretty extensive list of modifications for Twenty Seventeen:
https://www.designbombs.com/master-twenty-seventeen-wordpress-theme/
In particular the CSS to move the sidebar to the left is:
@media screen and (min-width: 48em) {
.has-sidebar #secondary {
float: left;
}
.has-sidebar #primary {
float: right;
}
.has-sidebar:not(.error404) #primary {
float: right;
}
}
Use the CSS option in the customizer: http://screencast-o-matic.com/watch/cb10nulfv7
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@w411, for some reason it was not working; however I found another way around it and still tweaking it.
@anevins, my apologies. I did try to find the twenty seventeen forum but for some reason my search was not working well; hence my decision to post here.
Thanks
What did you end up using as a workaround? That screencast I included was strictly Twenty Seventeen with no plugins so you may have a plugin that is causing a CSS conflict.
It is possible there was some plugin conflict.
I used the modified version of the following script, which I found from another posting:
.navigation-top {
left: 55%;
position: absolute;
top: 143px;
width: 40%;
background: #AD1D43;
height: 70px;
}