Hi I trying to make my textboxes to a smaller width. Like right above here when it says "insert and image in your message" I want to change the font and make the width smaller. Plz help me
| SitePoint Sponsor |


Hi I trying to make my textboxes to a smaller width. Like right above here when it says "insert and image in your message" I want to change the font and make the width smaller. Plz help me


I mean a smaller height. plz help
do you use CSS? if so you can change your input style properties...
Code:input{ color: #587389; background-color: #FAFAFA; font-size : 11px; font-weight : bold; }


very nice mentor...what if I want to use different styles tho for different ones?


that works for textboxes but what about comment boxes and selection boxes?
just add it like this... btw you can do this using a <style> tag too but i'd recommend you use CSS instead to separate formatting from content/code:
Code:input,textarea,select { color: #587389; background-color: #FAFAFA; font-size : 11px; font-weight : bold; }





Using the <style> tag is using CSS, though...Originally posted by redemption
btw you can do this using a <style> tag too but i'd recommend you use CSS instead to separate formatting from content/code
oops let me rephrase that as "a CSS file" instead... you know what i mean
Bookmarks