Gunjan
Gunjan

Reputation: 37

How to edit css : Bigcommerce Stencil

How can I edit in CSS.

In Stencil framework can't found .css file.

In assets folder only found .scss file.

I want to edit in theme.css

How can I edit ?

Can any body help me ?

Upvotes: 1

Views: 3072

Answers (3)

Jaydeep
Jaydeep

Reputation: 38

the .scss files are the css files. The stencil framework uses scss instead of the regular css. Please check this path /assets/scss/theme.scss

Upvotes: 0

Jonathan
Jonathan

Reputation: 151

the .scss files are the css files. The stencil framework uses scss instead of the regular css.

This link should help guide you on how to edit the files: https://support.bigcommerce.com/articles/Public/Using-the-Stencil-Theme-Editor

Upvotes: 0

Shawjak3
Shawjak3

Reputation: 541

If you are developing a stencil theme locally and have ran stencil start it watches your SCSS files. So one option is you could add any custom CSS you want to the /assets/scss/theme.scss file.

Another option is you could create your own SCSS file, say for example custom.scss, and place it in /assets/scss/. Then import it to your theme.scss like this @import "custom" . Make sure you place it at the bottom of your theme.scss file so it overrides any css you are wishing to alter.

Upvotes: 2

Related Questions