Display check box records on same line

Display check box records on same line

by Ben Tapscott -
Number of replies: 2

Hi,

Is it possible to display all the elements of a check box field in "view single" on the same line?

unnecessary


Here is the code: 


<div style="font-size:0.9em"><b>Annee:</b> Annee</div>

<div style="font-size:0.9em"><b>Competences:</b> Competences</div>


Any help is appreciated greatly smile




Average of ratings: -
In reply to Ben Tapscott

Re: Display check box records on same line

by William Lu -
Picture of Particularly helpful Moodlers

I don't know how to display check items in same line.

I just use a table to hold them in a cell.

<table border="0" cellpadding="3" cellspacing="0">
  <tbody>
    <tr>
      <td align="right">Annee:</td>
      <td>[ [Annee] ]</td>
    </tr>
    <tr>
      <td align="right">Competences</td>
      <td>[ [Competences] ]</td>
    </tr>
  </tbody>
</table>
Average of ratings: Useful (1)
In reply to William Lu

Re: Display check box records on same line

by Ben Tapscott -

Brilliant thanks so much, need to get my head into some html books smile