I couldn’t figure out how to make the input box larger. There is a placeholder but it can’t be seen because of space in the (Age) section.
@Puffy ,
You can style the input field by giving padding and width. This will align the input fields in the same manner and It will look good.
Example :
#name, #email, #number{
padding:10px;
width:120px
}
1 Like
You can use the css width to make it wider. This is a css example.
<style>
.input {
width: 30px;
}
<style>
I hope this helps
1 Like
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.