or
.k-grid-header {font-size: x-small !important;}
works fine in IE but I'm not having any success with Chrome, FF, or Opera. What is the proper cross-browser CSS to set the font-size of the header?
Thanks
var data = [ {"state":"NY","abc":12312}, {"state":"AZ","abc":12312}, {"state":"CA","abc":12312}, {"state":"VT","abc":12312} ];var data = [ {"state":"MH","1":12312}, {"state":"MH","1":12312}, {"state":"MH","1":12312}, {"state":"MH","1":12312} ];<a href="" id="btnShowHide" data-role="button" style="background-color: rgb(135, 196, 66);">Show</a></div>
$("#btnShowHid").kendoMobileButton({
click: function (e) {
var element = document.getElementById('btnShowHide');
if (element.innerText === "Hide") {
window.localStorage.removeItem(followProjectID);
element.innerText = "Show"
}
else {
window.localStorage.setItem(followProjectID, (followProjectTitle + "|" + followProjectImageUrl + "|" + followProjectDescription));
element.innerText = "Hide"
}
// $("#btnShowHid").kendoMobileButton();
e.preventDefault();
}
});