Oct 21, 2005 #1 rockinhorse Programmer Joined Oct 21, 2005 Messages 14 Location US I can't find a means in which I can change the font in a dropdown select object or even a text input object. Any ideas?
I can't find a means in which I can change the font in a dropdown select object or even a text input object. Any ideas?
Oct 21, 2005 1 #2 cLFlaVA Programmer Joined Jun 14, 2004 Messages 6,450 Location US plain old html/css. Code: <select name="s1" style="font-family: 'Courier New'; color: red;"> Code: <input type="text" name="t1" style="font-family: 'Courier New'; color: red;"> *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url] Upvote 0 Downvote
plain old html/css. Code: <select name="s1" style="font-family: 'Courier New'; color: red;"> Code: <input type="text" name="t1" style="font-family: 'Courier New'; color: red;"> *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url]
Oct 21, 2005 Thread starter #3 rockinhorse Programmer Joined Oct 21, 2005 Messages 14 Location US How do you cahnge the font size? Upvote 0 Downvote
Oct 21, 2005 #4 cLFlaVA Programmer Joined Jun 14, 2004 Messages 6,450 Location US add a style: [tt]font-size: medium;[/tt] you can use relative font sizes, pixels, ems, etc. do a simple search for more info. *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url] Upvote 0 Downvote
add a style: [tt]font-size: medium;[/tt] you can use relative font sizes, pixels, ems, etc. do a simple search for more info. *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url]