Doubts with .CSS [closed]

-4

Hello. I have a new Wordpress theme and I'm trying to customize it. All Wordpress themes I've ever worked on have .CSS files that we modified, but this theme of mine has .SCSS files and when I modify them, it has no effect on the theme. even if they are modified in the file, nothing happens on the theme. When I go into the browser debug it still appears normal, but in the file it appears modified. For what reason?

    
asked by anonymous 29.12.2018 / 17:50

1 answer

1

Hello

Your theme is using Sass / Scss, which is not interpreted by the browser, so you need to compile your Sass / Scss file in CSS. See more details on how to run and install here: link

    
29.12.2018 / 17:59