What's your biggest current challenge? Have your say in Community Polls along the right column.

How can I merge cells in a product description table?

How can I merge cells in a product description table?

zeatopia-Angela
Visitor
1 0 1

The table in the description of the page or products, I can't Merge cells

Reply 1 (1)

NomtechSolution
Astronaut
1245 113 154

Switch to HTML editing mode in the Shopify editor and manually modify the HTML code to merge cells. Locate the table in the HTML code and use the appropriate HTML tags (<th> or <td>) to merge cells using the colspan and rowspan attributes. Here's an example:

 

<table>
  <tr>
    <th colspan="2">Merged Cells</th>
    <th>Cell 3</th>
  </tr>
  <tr>
    <td>Cell 1</td>
    <td>Cell 2</td>
    <td>Cell 3</td>
  </tr>
</table>