I included index.css
in the styles folder and referenced it in template.conf
:
{
"name": "Wright",
"author": "Squarespace, Inc.",
"layouts": {
"default": {
"name": "Default",
"regions": [
"site"
]
}
},
"stylesheets": [
"index.css"
],
etc...
}
According to the documentation, stylesheets will be compiled into site.css
:
stylesheets
List of your stylesheet. Stylesheets will be compiled into site.css following the ordering here.
NOTE: If you add a file named reset.css to the /styles/ folder it will automatically get added to the top of the site.css file. It should not be listed in the "stylesheets" variable in template.conf.
Where can I find this site.css
file? How is it linked to site.region
?
Currently, I'm facing difficulties loading the custom css file using this method.