I have seen this topic a few times, but haven't seen an answer.
When creating a form with multiple field types, some of the fields are not showing as the same size. This creates a clunky appearance. The drop-down is the first one that comes to mind. It is about half the size of the other fields.
How do you correct that and make it the same height?
Dropdown Field Size Too Small - Post...
Hi Jerry,
It all depends on the look you want.
line 451 in the default.css
Add some padding for starters.
Change this
To this.
It all depends on the look you want.
line 451 in the default.css
Add some padding for starters.
Change this
#docContainer .fb-dropdown select {
background: none repeat scroll 0 0 #FFFFFF;
font: 12px Helvetica,Arial,Sans-serif;
max-width: 100%;
padding: 0;
width: 92%;
}
background: none repeat scroll 0 0 #FFFFFF;
font: 12px Helvetica,Arial,Sans-serif;
max-width: 100%;
padding: 0;
width: 92%;
}
To this.
#docContainer .fb-dropdown select {
background: none repeat scroll 0 0 #FFFFFF;
font: 12px Helvetica,Arial,Sans-serif;
max-width: 100%;
padding: 7px 0 7px 0;
width: 92%;
}
background: none repeat scroll 0 0 #FFFFFF;
font: 12px Helvetica,Arial,Sans-serif;
max-width: 100%;
padding: 7px 0 7px 0;
width: 92%;
}
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.