Search code examples
javascriptjqueryhtmlcssinput-type-file

Edit the attributes of value in an input tag


I have an input type like this:

<input type="button" value="Spoedgevallen" id="redbg" onclick="">

The text within "value" is bolded, which may be the case because of a Jquery CSS (jquery.mobile-1.4.5.min.css), which is unreadable to say the least. Basically what I want to do is make the font-weight normal instead of bold.

Page can be found here.


Solution

  • Try to add this css rule:

    .ui-btn.ui-input-btn.ui-corner-all.ui-shadow {
        font-weight: normal;
    }