I am using jQuery mobile in my sample project. I have three buttons. I am changing the style of the buttons (adding my own CSS) so that it overrides jQuery button CSS. But while adding it still shows some small white background. I inspect the page and find it is jQuery mobile button. I am not able to override that background. Here is my attempt: http://jsfiddle.net/naveennsit/5DDBD/
.ui-grid-c .ui-btn-inner {
background: #2b6dbc;
color: #FFFFFF;
border: 1px solid #000;
border-radius: 3px;
width: 100px;
text-shadow: none;
margin-left: 4px;
}
Using the DOM inspector, when I removed this background: 2b6dbc it will show jQuery mobile button.
How can I remove that?
After adding this, it changing the color on focus and unfocus.
.ui-btn-up-c{background:#2b6dbc; color:#FFFFFF; border:1px solid #000; border-radius:3px; width:100px; text-shadow:none; margin-left:4px;}
.ui-btn-inner's width is wider than the.ui-btn...