Site logo

Archived topic

How to create tables like this?

1 reply · Started by Sameer on September 10, 2019

Viewing posts 1–2 of 2

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?

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.

This archived topic is closed to new replies.