I'm having trouble changing the background color of an item in my split application. I've tried using CSS, but nothing seems to work.
Here is the template for the item (default style):
<div class="itemtemplate" data-win-control="WinJS.Binding.Template">
<div class="item">
<img class="item-image" src="#" data-win-bind="src: backgroundImage; alt: title" />
<div class="item-info">
<h3 class="item-title win-type-ellipsis" data-win-bind="textContent: title"></h3>
<h6 class="item-subtitle win-type-ellipsis" data-win-bind="textContent: subtitle"></h6>
<h4 class="item-description" data-win-bind="textContent: description"></h4>
</div>
</div>
</div>
CSS attempt:
.item {
background-color: red;
}
This is how it currently looks like:
Also, I want to change the violet color and the light gray color around violet (on hover) to something else.