Reputation:
I created an ASP.Net webforms project and after doing all the backend stuff, I now want to work on the design. I want to use Google Material Design Lite. The project currently has all the Bootstrap styles that it puts in when I created the project and I want to remove all of that. I removed all of the stylesheet files I could find, and yet the appearance of the site remains the same. Where is it getting the stylesheet information from if not from *.css files and how do I get rid of it?
Upvotes: 0
Views: 1948
Reputation: 102
You'll have to remove the masterpage and import your own stuff. Create a webpage without using a masterpage. And then import your own CSS.
Upvotes: 1