• Hello,
    I need to make a table with some numbers on my product details. How would I make that maybe with custom fields?

    Thanks!

    Janne Saari

Viewing 1 replies (of 1 total)
  • Hi Jaosaari,

    There is not an option to add table. But may be you can try create custom field and set type to “Text Area” (Custom field “Short text” and “Text area” allows users to use html code that will be render on front page). If you write html code for table it will be shown as table on front side. For example try code give below. We can’t guarantee this will work but it is worth trying.

    <table style = display: inline; border: >
      <tbody>
         <tr>
            <td>Height </td>
            <td>Width </td>
            <td>Weight </td>
         </tr>
         <tr>
            <td>192cm </td>
            <td>180cm </td>
            <td>12kg </td>
         </tr>
      </tbody>
    </table>
Viewing 1 replies (of 1 total)
  • The topic ‘How would I make a table in product details?’ is closed to new replies.