Adding a table block

i wish to add a table containing data, how do i do this which muffin element do i use?

Comments

  • In this case you must use plain html for tables, just like below:
    <table>
        <thead>
            <tr>
                <th>Employee</th>
                <th>Salary</th>
                <th>Bonus</th>
                <th>Supervisor</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Stephen C. Cox</td>
                <td>$300</td>
                <td>$50</td>
                <td>Bob</td>
            </tr>
            <tr>
                <td>Josephin Tan</td>
                <td>$150</td>
                <td>-</td>
                <td>Annie</td>
            </tr>
            <tr>
                <td>Joyce Ming</td>
                <td>$200</td>
                <td>$35</td>
                <td>Andy</td>
            </tr>
            <tr>
                <td>James A. Pentel</td>
                <td>$175</td>
                <td>$25</td>
                <td>Annie</td>
            </tr>
        </tbody>
    </table>
  • Hi thanks i just wondered if there was a short code or table block with options that existed?

    What muffin page element is best to use to insert table html, or place text blocks to?
  • The best one is "Column" item. This is what we use.
  • hi i have added a table but it is not responsive on mobiles, i understood the theme was responsive please advise on making it responsive.

  • Are you serious? Have you ever seen responsive table. Table technically can't be responsive and also in this case won't never be.
  • edited September 2015
    Work arounds for Responsive tables are everywhere and are implemented using many different techniques, I was simply and politely asking how your theme deal with this.   

    You need to get with the picture  as your attitude stinks ! What is it with the way you think you can respond to paying customers.    
  • Sure, we'll of course. And we really apologize if we offended you somehow.
  • is it maybe possible to work with percentages of the width and height of the tables?
  • @Deean Sorry but we do not have such functionality included.
Sign In or Register to comment.