I have a button with the following code, but the CSS below is not working
i.e. the color and size is not changing
CSS:
<!-- language: lang-css -->.btn-default .act-buttons{
background-color: black!important;
color: white!important;
height: 28px;
width: 28px;
}
HTML:
<!-- language: lang-html --><div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" id="submit" value="Save" class="btn btn-default act-buttons" />
</div>
</div>