Plugin Author
Bob
(@prasunsen)
Hi, something in your CSS (may be another plugin) is redefining the checkbox field as display:block. You need to find and remove it or add a rule with !important that will avoid this in the watu area,
The author of thids plugin gives support at:
http://ww.wp.xz.cn/support/plugin/watu
Plugin Author
Bob
(@prasunsen)
I am the author, already answered. The OP needs to check their CSS, something outside of watu is redefining inout type=checkbox
You’re right. I’m using the connection plugin. Maybe this is what you meant.
#cn-list table td input[type="checkbox"] { margin: 0 0 2px; padding: 0; vertical-align: middle;}
What should I do then? Any tips?
Plugin Author
Bob
(@prasunsen)
Not sure if the margin here is the actual problem. There might be another line redefining it as checkbox. Try to find all places where checkbox is redefined and remove it from there or add a force rule instead:
.show-question input[type=”checkbox”] {
display:inline !important;
margin:0 !important;
}
Already did that but no results. 🙁
Plugin Author
Bob
(@prasunsen)
You’ll need CSS expert for this. Sorry, not my competence and it’s not Watu mistake anyway.