I need to make some mock up screen shots useing a CSS Stylesheet, but i have no idea how to apply it to my MVC3 application.
When i replace the previous style sheet, my page has no style.
<link href="@Url.Content("~/Content/insstyle.css")" rel="stylesheet" type="text/css" />
And if i put it in a new line after the style changes a bit but its nothing good its hardly changes and i know this stylesheet is huge and looks nice.
<link href="@Url.Content("~/Content/site.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/insstyle.css")" rel="stylesheet" type="text/css" />
This is the method i looked up to merge the two style sheets.
Questions ...
1) Am i merging the style sheets correctly, if not how do i merge two different style sheets correctly?
2) With a MVC3 application can i remove the original style sheet? can i only have my new style sheet as the main style sheet?