[Support request] How to create tables like this?

Home Forums Support [Support request] How to create tables like this?

Home Forums Support How to create tables like this?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1006392
    Sameer

    Hello, I want to create tables such as this (Inserted in URL section). I don’t think it’s tablepress, is there a plugin or its custom css?

    #1006628
    David
    Staff
    Customer Support

    Hi there,

    not sure if they used a plugin, but its just HTML using the unsemantic grid which GP includes a stripped down version. So this markup could be used to create those rows:

    <div class="my-section">
        <div class="grid-container">
            <div class="grid-15">
                <p>Col 15%</p>
            </div>
            <div class="grid-30">
                <p>Col 30%</p>
            </div>
            <div class="grid-25">
                <p>Col 35%</p>
            </div>
            <div class="grid-30">
                <p>Col 30%</p>
            </div>
        </div>
    </div>

    You can then use the my-section class ( which you can name whatever you want ) to style them.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.