Hi Saguaros,
Please be advised the issue persists. (1) We have updated to the latest T4_Blank template released on Jan 11th (v1.0.9) and also the T4 System Plugin (v1.1.3).
Regarding the SCSS > Save & Compile, we have certainly tried this, and many times before creating support post. The Save & Compile function does not work.
Also, you mentioned its working on your end? What version of T4 Blank template and plugin do you have?
The last version of T4 Blank we had was 1.0.8. And the problem I think is that someone has defined the container in template.css file. For example on lines 529-563:
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
Now, using Firebug, I can change the width of the template in this code and the front-end responds. The SCSS has NO / Zero effect.
The only way I can make the template width change is to create an override of the template.css code in my custom.css / local file where I change the values listed above. But this defeats purpose of having the variables and SCSS.
I am not sure if this code was present in previous versions but it seems to be the issue and preventing SCSS from working.
Thanks