dropgates
(Eric Vaughn)
1
Does anyone know how to radius the edges on the input areas in a Foundation form? I’d like them to be a pill, but can’t get it to work.
I gave each input a class of pill and used:
.pill {
border-radius: 16px;
}
My project is here: https://one11sandbox.com/sspros/
DLH
(Don H)
2
Try this:
.pill input {
border-radius: 16px !important;
padding-left: 12px;
}
The left padding is to align the text in the box a bit. You can adjust to your liking.
dropgates
(Eric Vaughn)
3
Don,
YOU ROCK!!! Thank you, it looks fantastic!!
A border-radius of 50% would be better…
system
(system)
Closed
6
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.