How do I apply a class to the following so that I can apply a specific css style to it?
The rest of the consist of anchor tags so I can easily apply a class but where do I stick it on this @Html.RenderAction?????
<li>@{Html.RenderAction("CartSummary", "ShoppingCart");}</li>
RenderAction will output a PartialView so I guess your class attribute should be put in the view (the one you call from the method CartSummary in ShoppingCartController) or inside the
<li>that call it (maybe with a DIV)