Tagged: checkbox, CONTACT FORM
Hi Guys,
I’ve managed to alter my checkboxes position with a Quick CSS you’ve answered on a different topic however I haven’t be able to figure out how to make it bigger.
Hey mooshonov,
Thanks for the screenshot, could you post a link to where we can see the actual elements as well please?
Best regards,
Rikard
there you go.
Hi mooshonov,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
input[type=checkbox] {
transform: scale(1.5);
}
If you need further assistance please let us know.
Best regards,
Victoria
Can you please specify some distance between the scaled checkbox to the label?
Hi,
Did you try to add margin to the code?
input[type=checkbox] {
transform: scale(1.5);
margin:10px;
}
Best regards,
Rikard
Thanks a lot! it has now space but it’s not aligned center. Value is pushing the text upwards instead of left away from the checkbox (RTL).
Hi,
Try this instead:
input[type=checkbox] {
transform: scale(1.5);
margin:10px 0 0 10px;
}
Adjust the margin values to your liking (top/right/bottom/left)
Best regards,
Rikard
Thanks Rikard! 100%!
Hi,
Great, I’m glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
All is good, thanks a lot!