How to adjust the options box in Amazon Mechanical Turk's <crowd-form> template

0

I am using the following code, where the array of categories are created in random order using javascript and passed into 's "categories" property as an array.

I am wondering if there is any way to adjust the presentation of the 18 options such that I have my 18 options appearing all at once (perhaps 9 in a column, and another 9 in another column), rather than having the mturk worker to scroll up and down. Is there any code for that?

This is what my current layout with a scroll button looks like now and I have the code written below.

Enter image description here

<crowd-image-classifier

src="${image_url}"

header="What occupation do you think this person belongs to?"

name = "occupation"

id = "occupation">



<!-- Use the short-instructions section for quick instructions that the Worker will see while working on the task. Including some basic examples of good and bad answers here can help get good results. You can include any HTML here. -->

<short-instructions>

<p>Please select one occupation that this person could conceivably belong to.</p>

<p></p>

</short-instructions>



<!-- Use the full-instructions section for more detailed instructions that the Worker can open while working on the task. Including more detailed instructions and additional examples of good and bad answers here can help get good results. You can include any HTML here. -->

<full-instructions header="Classification Instructions">

<p>Please select one occupation that this person could conceivably belong to.</p>

<p></p>

</full-instructions>



</crowd-image-classifier>

I already tried adding a style element at the top but it couldn't recognize the #occupation id at all or change anything

<style>
#occupation {
  color: red;
  text-align: center;
}
</style>
已提问 10 个月前63 查看次数
没有答案

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容