• Resolved Chrissolve

    (@chrissolve)


    Hi,

    I created a test that asks for a rating on a scale from 1 to 6, means the user can pick the answers 1,2,3,4,5 or 6. These numbers are listed below each other, which uses up many rows of text and destroys the motivation to answer (too much text and scrolling).

    Is ist possible, to put the complete scale 1,2,3,4,5,6 in one row?
    If necessary I would insert that in the code by myself but I don’t know which module it is and where to search for.

    best regards!

    https://www.ads-software.com/plugins/wp-testing/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor ustimenko

    (@ustimenko)

    Yes.

    Add this CSS somewhere:

    .wpt_test .answer {
      display: inline-block;
    }
    Thread Starter Chrissolve

    (@chrissolve)

    Thanks for the info!

    Hmm, where is “somewhere”? When I insert the code in the theme CSS, it changes nothing. In the WP-Testing sourcecode, I cannot find the right module.

    Plugin Contributor ustimenko

    (@ustimenko)

    As a last chance add this just to test description:

    <style>
    .wpt_test .answer {
      display: inline-block;
    }
    </style>

    It’s a bad style, but it should do the trick.

    Thread Starter Chrissolve

    (@chrissolve)

    thanks! It works…
    Maybe it can later be implemented as a switch in the plugin but for me it works…

    Plugin Contributor ustimenko

    (@ustimenko)

    It will be in Styling addon.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘scale rating in coloums instead of rows possible?’ is closed to new replies.