I want to enlarge a button and a input field and inputted text, I know it can be done just not sure how to do it? + rep for someone that knows how!
make a class, for example .inputbutton { height: 20px; Width: 60px; } Then call it into the button using " class="inputbutton" Let me know how it turns out!
well that enlarges the button but I also need the input bar enlarging, the button text and the text that's inputted...
Well, you could use another class on the input (text) field, such as "txtMed". (Just as ryandanielt suggested above, but on the text box.) Then, in your CSS: .txtMed{height:/*height here*/;width:/*width here*/;font-size:/*size here*/;} You can even change the font-family for the input if you want to. Hope that helps. : )