Yodrak
in memoriam 1976 - 2020
I have made an addon where shows images in polls. Now i want to show the images in 2 columns.
If i change
to
Then the Image Poll look like this:
And every template with input_choices in it look like this:
So how can i fix this issue?
If i change
HTML:
.inputChoices
{
list-style: none;
padding: 0;
margin: 0;
}
to
Code:
.inputChoices
{
<xf:if is="$template =='yip_poll_macros'">
column-count: 2;
</xf:if>
list-style: none;
padding 0;
margin 0;
}
Then the Image Poll look like this:
And every template with input_choices in it look like this:
So how can i fix this issue?