Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Increase input box font size

Increase input box font size

Locked

Views: 3,102

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
22 Aug 2008, 5:28 PM
#1
ebaobao avatar

ebaobao

Zen Follower

Join Date:
Jul 2008
Posts:
495
Plugin Contributions:
0

Increase input box font size

Hello,
Is there a way to increase the text size that are inside input boxes from css. For example the search box text, when they create account, and enter credit numbers. I feel the text are too small.
Thanks for help.

22 Aug 2008, 7:18 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Increase input box font size

Try increasing the font size in:

FORM, SELECT, INPUT {
display: inline;
font-size: 1em;
margin: 0.1em;
}

in your stylesheet. 1.1 or 1.2 em should be enough.

22 Aug 2008, 10:59 PM
#3
ebaobao avatar

ebaobao

Zen Follower

Join Date:
Jul 2008
Posts:
495
Plugin Contributions:
0

Re: Increase input box font size

Thanks Steve!
That works great. You guys are awesome.