Customize button with .css
hi,
I'd like to know how to customize the style of a button with css. I've followed the tutorial on http://docs.appery.io/documentation/w... where just the button text is changed.
I want to change the appearence of the button completely so I've assigned my button the .my-btn class on the UI interface. I've created this class on a new css document and included this code:
.my-btn {
border-radius: 5px !important;
border-color: blue !important;
width: 50px !important;
height: 50px !important;
background-color: red !important;
border-width: 5px !important;
border-style: solid !important;
font-weight:bold !important;
font-size:24px !important;
}
However the button is not getting this style and when I inspect the object with chrom it still has the default classes plus the class I've created:
a class="my-btn ui-btn ui-shadow ui-btn-corner-all ui-fullsize ui-btn-hover-a ui-btn-up-a" name="mobilebutton_10" rel="nofollow"span class="ui-btn-inner"span class="ui-btn-text"
Button
/span/span/a
What do I need to modify so the rest of the classes do not affect my custom button?
Thanks a lot Miguel