problem justifying columns of numbers | XM Community
Skip to main content

 

Hi all, I’m new to qualtrics and haven’t been able to find the solution to my problem. I want to make the below results line up so they are justified right. I am not allowed to use tables as it interferes with my organisations accessibility rules.  The code I am using is   ${gr://SC_8oVJ87fin9VHlKm/Score}

The results:

Standard 1       9
Standard 2       10
Standard 3       10
Standard 4       9

How I want it to look

Standard 1         9
Standard 2       10
Standard 3       10
Standard 4         9

Can anyone help solve this without tables please?
Many thanks

Anthony 

Did you try this?
<div style=”text-align: right;”>${gr://SC_8oVJ87fin9VHlKm/Score}</div> 

OR

you can use Qualtrics Rich Content Editor option. Refer below link.

https://www.qualtrics.com/support/survey-platform/survey-module/editing-questions/rich-content-editor/rich-content-editor-overview/


Hi thanks very much for your response. 

I didn’t work, but I will keep adjusting it and trying different things. 

Thanks


@Anthony O,

You can use a grid. For example:

<div style="display:grid;grid-template-columns:8em 3em;justify-items:start;">
<div>Standard 1</div><div style="justify-self:end">9</div>
<div>Standard 2</div><div style="justify-self:end">10</div>
</div>

 


@Anthony O,

You can use a grid. For example:

<div style="display:grid;grid-template-columns:8em 3em;justify-items:start;">
<div>Standard 1</div><div style="justify-self:end">9</div>
<div>Standard 2</div><div style="justify-self:end">10</div>
</div>

 

Thanks Tom I will give it a go.


Leave a Reply