Hello @d7fox7vr
I hope you’re doing well!
Tell me, when you hover over Select, the image can change (not yet selected)? How to make the picture change immediately on hover? Is it possible?
Out of the box, it is not possible through the plugin’s settings. It can be achieved with some custom CSS.
As we do not have your site URL, the CSS here is shared based on my setup.
Please edit the form, and add first the images (HTML fields) and after the Select field for these images. See the screenshot:
https://take.ms/UXKO3
Edit each HTML field, go to Styling and add a custom CSS class, to the Additional CSS Classes field. Add same custom CSS to all HTML fields that contain an image. Please see the screesnhot:
https://monosnap.com/file/7hWeKb6E2sYYgV3HY0mpaO1ZEDHWkt
Add a unique custom CSS to the Select field as well, the same way as shown above.
Please try this CSS code, add it to Appearance > Customizer > Additional CSS
/* CSS code for the HTML field */
.image-dropdown1 {
width: 25%;
max-width: 150px;
display: inline-block;
}
/* CSS code for the Select field */
.dropdown1 {
display: inline-block;
position: relative;
float: right;
left:25%;
top: -170px;
max-width:500px;
}
Replace the image-dropdown1
CSS class with a CSS class used for the HTML fields. And replace the dropdown1
class with the one that will be used for the Select field.
Feel free to adjust values form the, left
, top
and max-width
to achieve the desired look.
Hope this will help!
Cheers,
Nastia