简体   繁体   中英

Increased font-size of text for the Uploadify Button

I want to increase the text for the uplodify button without chaning the button size.

E.g:  'buttonText'  : 'Upload Image'.

I want to increase the size of upload image text only.

Use this jQuery to change the text:

$('#button_id').text("Upload Image"); // change text of button

Then with CSS you can keep the width the same:

#button_id {
width: 50px; /* change this to what you want */
}

Remember to change button_id to the actual id of your button.

jsFiddle: http://jsfiddle.net/NathanJohnson/67cv3/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM