- This topic has 1 reply, 2 voices, and was last updated 7 years, 7 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Colors in Search Form
Hi Trevor!
I have a form built with Search & Filter Pro and I would like to instead of having the names “beige”, “green”, etc: I would like to have little boxes with those actual colors that people can checkbox instead. How would I go about doing this?
Link to page: https://linthforreal.apps-1and1.net/classic
Thanks,
Chris
You could use CSS for each, maybe like this, I think:
input[value="beige"] + label {
background-color: #f5f5dc !important;
color: transparent;
}
input[value="africa-where"] + label:hover {
cursor: pointer;
}
.searchandfilter li[data-sf-field-input-type="checkbox"] label {
height: 50px;
width: 100px;
}