• Resolved carlitos345

    (@carlitos345)


    Hi, how do i add a size chart to a page .
    i am selling dresses so i want to display a table.
    i could not see a Table icon on “pages”.
    Could someone please advise ? Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • RossMitchell

    (@rossmitchell)

    There are plugins which will help you adding tables to PAGES / POSTS, they add the icons you expected. You can also enter the table html markup in TEXT mode, this is especially easy if you have a limited number of tables which get reused on lots of pages, you can just scoop them up from a template file and paste them in.

    Thread Starter carlitos345

    (@carlitos345)

    Thanks for your reply.
    could you please refer me to a template file
    so i can paste a table in.?
    Cheers!

    Cooee.

    Here is a simple table that has 3 columns and 5 rows including the header row

    <table>
    <tr><th>Size</th><th>Available</th><th>Colours</th></tr>
    <tr><td>S</td><td>No</td><td>NA</td></tr>
    <tr><td>M</td><td>Yes</td><td>Red, Pink, Magents</td></tr>
    <tr><td>L</td><td>Yes</td><td>Lavender, Aqua, Turquoise</td></tr>
    <tr><td>XL</td><td>No</td><td>NA</td></tr>
    </table>`

    TR = ROW
    TH = header cell
    TD = table data cell
    Add rows and columns to suit.
    Style in your custom css or child theme

    Thread Starter carlitos345

    (@carlitos345)

    Thank so much!
    for your advice.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘add a size chart to a page’ is closed to new replies.