Search code examples
htmlcsssassstylesheet

I am using a html template for a new website. It is using SASS styles but I would like to only use CSS. How can I get rid of the SASS stylesheets


When I inspect in Chrome it will give me a location of the SASS styles but the file location does not exist in my website folder.

Image of what Chrome inspector displays

enter image description here


Solution

  • I'd look in the <head> of the file for a link to the scss file. There's likely to be a <style> element there that imports the scss stylesheet. If it's not in the <head> it might be somewhere else in the document, I'd check the end next. You can remove the link to the scss file and replace it with a link to your own css file.