﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 6  » Survey Question Formatting</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Wed, 24 Jun 2026 13:45:06 GMT</lastBuildDate><ttl>20</ttl><item><title>Survey Question Formatting</title><link>https://forums.millisecond.com/Topic41670.aspx</link><description>Hellooo! I'm new to Inquisit and for the experiment I'm trying to program I would like a survey that deliberately looks quite cramped. Therefore, I've been trying to find a way to display questions on both halves of the screen, but I haven't been able to find a method of doing that yet. Is this possible or is there some other way I could achieve the same effect?&lt;br/&gt; Many thanks!</description><pubDate>Wed, 01 Oct 2025 09:01:22 GMT</pubDate><dc:creator>Jolly</dc:creator></item><item><title>RE: Survey Question Formatting</title><link>https://forums.millisecond.com/Topic41672.aspx</link><description>&lt;blockquote data-id="41671" class="if-quote-wrapper" unselectable="on" data-guid="1759309251785" contenteditable="false" id="if_insertedNode_1759309250766"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="41671" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="41671" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="41671" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Dave - 9/30/2025&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-41671"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;&lt;blockquote data-id="41670" class="if-quote-wrapper" unselectable="on" data-guid="1759309251785" contenteditable="false" id="if_insertedNode_1759267129017"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="41670" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="41670" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="41670" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Jolly - 9/30/2025&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-41670"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Hellooo! I'm new to Inquisit and for the experiment I'm trying to program I would like a survey that deliberately looks quite cramped. Therefore, I've been trying to find a way to display questions on both halves of the screen, but I haven't been able to find a method of doing that yet. Is this possible or is there some other way I could achieve the same effect?&lt;br/&gt; Many thanks!&lt;a class="if-quote-goto quote-link" href="#" data-id="41670"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;All survey question elements have /position attributes, which allow you to place them wherever you like on a given surveypage.&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;surveypage examplePage&amp;gt;&lt;br/&gt;/ caption = "A surveypage"&lt;br/&gt;/ questions = [1=a; 2=b; 3=c; 4=d]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown a&amp;gt;&lt;br/&gt;/ caption = "Dropdown"&lt;br/&gt;/ options = ("Foo", "Bar", "Baz")&lt;br/&gt;/ position = (10%, 15%)&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;radiobuttons b&amp;gt;&lt;br/&gt;/ caption = "Radiobuttons"&lt;br/&gt;/ options = ("X", "Y", "Z")&lt;br/&gt;/ position = (10%, 30%)&lt;br/&gt;&amp;lt;/radiobuttons&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;checkboxes c&amp;gt;&lt;br/&gt;/ caption = "Checkboxes"&lt;br/&gt;/ options = ("Cats", "Dogs", "Unicorns", "other")&lt;br/&gt;/ position = (50%, 15%)&lt;br/&gt;&amp;lt;/checkboxes&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;slider d&amp;gt;&lt;br/&gt;/ caption = "slider"&lt;br/&gt;/ range = (0, 10)&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;&amp;lt;/slider&amp;gt;&lt;br/&gt;[/code]&lt;a class="if-quote-goto quote-link" href="#" data-id="41671"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;That works well, thank you so much</description><pubDate>Wed, 01 Oct 2025 09:01:22 GMT</pubDate><dc:creator>Jolly</dc:creator></item><item><title>RE: Survey Question Formatting</title><link>https://forums.millisecond.com/Topic41671.aspx</link><description>&lt;blockquote data-id="41670" class="if-quote-wrapper" unselectable="on" data-guid="1759267130077" contenteditable="false" id="if_insertedNode_1759267129017"&gt;&lt;a class="quote-para" unselectable="on" style="display: none;" href="#" data-id="41670" title="Move Cursor Below" contenteditable="false"&gt;&lt;span unselectable="on"&gt;+&lt;/span&gt;&lt;/a&gt;&lt;a class="quote-delete" unselectable="on" style="display: none;" href="#" data-id="41670" title="Delete Quote" contenteditable="false"&gt;&lt;span unselectable="on"&gt;x&lt;/span&gt;&lt;/a&gt;&lt;span unselectable="on" class="quote-markup"&gt;[quote]&lt;/span&gt;&lt;div unselectable="on" class="if-quote-header" contenteditable="false"&gt;&lt;div unselectable="on" class="if-quote-toggle-wrapper"&gt;&lt;a class="if-quote-toggle quote-link" href="#" data-id="41670" title=" "&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[b]&lt;/span&gt;Jolly - 9/30/2025&lt;span unselectable="on" class="quote-markup"&gt;[/b]&lt;/span&gt;&lt;/div&gt;&lt;div class="if-quote-message if-quote-message-41670"&gt;&lt;div class="if-quote-message-margin" contenteditable="true"&gt;Hellooo! I'm new to Inquisit and for the experiment I'm trying to program I would like a survey that deliberately looks quite cramped. Therefore, I've been trying to find a way to display questions on both halves of the screen, but I haven't been able to find a method of doing that yet. Is this possible or is there some other way I could achieve the same effect?&lt;br/&gt; Many thanks!&lt;a class="if-quote-goto quote-link" href="#" data-id="41670"&gt;&lt;span class="goto"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;span unselectable="on" class="quote-markup"&gt;[/quote]&lt;/span&gt;&lt;/blockquote&gt;&lt;br/&gt;All survey question elements have /position attributes, which allow you to place them wherever you like on a given surveypage.&lt;br/&gt;&lt;br/&gt;[code]&amp;lt;surveypage examplePage&amp;gt;&lt;br/&gt;/ caption = "A surveypage"&lt;br/&gt;/ questions = [1=a; 2=b; 3=c; 4=d]&lt;br/&gt;/ showpagenumbers = false&lt;br/&gt;/ showquestionnumbers = false&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;dropdown a&amp;gt;&lt;br/&gt;/ caption = "Dropdown"&lt;br/&gt;/ options = ("Foo", "Bar", "Baz")&lt;br/&gt;/ position = (10%, 15%)&lt;br/&gt;&amp;lt;/dropdown&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;radiobuttons b&amp;gt;&lt;br/&gt;/ caption = "Radiobuttons"&lt;br/&gt;/ options = ("X", "Y", "Z")&lt;br/&gt;/ position = (10%, 30%)&lt;br/&gt;&amp;lt;/radiobuttons&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;checkboxes c&amp;gt;&lt;br/&gt;/ caption = "Checkboxes"&lt;br/&gt;/ options = ("Cats", "Dogs", "Unicorns", "other")&lt;br/&gt;/ position = (50%, 15%)&lt;br/&gt;&amp;lt;/checkboxes&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;slider d&amp;gt;&lt;br/&gt;/ caption = "slider"&lt;br/&gt;/ range = (0, 10)&lt;br/&gt;/ position = (50%, 50%)&lt;br/&gt;&amp;lt;/slider&amp;gt;&lt;br/&gt;[/code]</description><pubDate>Tue, 30 Sep 2025 21:27:08 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>