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.
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.
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.
Thanks Steve!
That works great. You guys are awesome.