I have declare a class in my site.css file as follows:
.CMenu1 {
display:inline;
}
Then I have tried to use that class to style my list in Index.cshtml like so:
<ul class="CMenu1">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ul>
However when I run the solution it continues to show the default style for a list, why?