Plugin Author
YOP
(@yourownprogrammer)
Hello
I looked at the link you sent over and I am seeing that the checkboxes and answers are on the same line no matter the browser used or desktop/mobile.
Here’s what it looks like on our end
https://ibb.co/YcyRGBL
Maybe you are referring to something else?
Hello,
Thanks for your check.
I’ve found the solution, but wasn’t able to close this request.
label {
display: block;
padding-left: 15px;
text-indent: -15px;
}
input {
width: 15px;
height: 15px;
padding: 0;
margin: 0;
vertical-align: bottom;
position: relative;
top: -1px;
}
Kind regards,
Plugin Author
YOP
(@yourownprogrammer)
Got it.
I think it would be best to target only the poll elements.
Something like
.basic-yop-poll-container label {
display: block;
padding-left: 15px;
text-indent: -15px;
}
.basic-yop-poll-container input {
width: 15px;
height: 15px;
padding: 0;
margin: 0;
vertical-align: bottom;
position: relative;
top: -1px;
}
This way other labels and inputs on your site won’t be affected by this code.
I’ve changed the code with only the poll elements you’ve described.
It is still working fine. 😉
Thanks for your support!