Plugin Author
YOP
(@yourownprogrammer)
Hi Jayschmay,
The problem is caused by the WordPress theme you use.
Edit your template and in the CSS section replace
#yop-poll-answers-%POLL-ID% ul li input {
margin:0px;
float:none;
}
with
#yop-poll-answers-%POLL-ID% ul li input {
margin: 0 5px 0 0 !important;
width: 0 !important;
float:none;
}
Regards,
YOP Team
Hey YOP Team,
I updated the template CSS but now the check boxes are gone and the “other” input field’s size is almost non-existant.
Thanks,
Jason
Plugin Author
YOP
(@yourownprogrammer)
Hi Jayschmay,
Please undo previous changes and add following modifications in CSS section of template
#yop-poll-answers-%POLL-ID% ul li input[type="radio"],#yop-poll-answers-%POLL-ID% ul li input[type="checkbox"] {
float: none;
margin: 0 5px 0 0 !important;
width: 13px !important;
}
After that, add display:inline !important; to #yop-poll-answers-%POLL-ID% ul li label
Regards,
YOP Team!