[Resolved] Grid Coumns on Section Page

Home Forums Support [Resolved] Grid Coumns on Section Page

Home Forums Support Grid Coumns on Section Page

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #108155
    Radu Antoniu

    Hello!

    In the video where you explain how to use sections you create these really nice looking columns of text. (these ones)

    How do we do this?

    #108171
    Jean Paiva
    Developer

    Hey Radu, you can create columns using the unsemantic grid:

    2 column layout:

    <div class="grid-container">
      <div class="grid-50">
        YOUR CONTENT IN HERE
      </div>
      <div class="grid-50">
        YOUR CONTENT IN HERE
      </div>
    </div>

    3 Columns layout:

    <div class="grid-container">
      <div class="grid-33">
       YOUR CONTENT IN HERE
      </div>
      <div class="grid-33">
       YOUR CONTENT IN HERE
      </div>
      <div class="grid-33">
       YOUR CONTENT IN HERE
      </div>
    </div>

    4 columns layout:

    <div class="grid-container">
      <div class="grid-25">
        YOUR CONTENT IN HERE
      </div>
      <div class="grid-25">
        YOUR CONTENT IN HERE
      </div>
      <div class="grid-25">
        YOUR CONTENT IN HERE
      </div>
      <div class="grid-25">
        YOUR CONTENT IN HERE
      </div>
    </div>

    You can check more stuff here: http://unsemantic.com/

    OBS.: For have this working properly, you need to set “TEXT” not “visual”.

    #108217
    Tom
    Lead Developer
    Lead Developer

    The above will work perfect – thanks, Jean!

    I’ll be releasing a free plugin on WordPress.org tomorrow that uses the unsemantic framework with shortcodes for people who don’t want to use HTML.

    I’ll post here when I release it 🙂

    #108240
    Radu Antoniu

    Excellent. Thank you!

    #108425
    Tom
    Lead Developer
    Lead Developer

    Did quite get it released today – waiting for WP.org approval.

    Will be tomorrow or Monday 🙂

    #108453
    Radu Antoniu

    No worries Tom !

    #109130
    Timothy Ajayi

    Please the link to the plugin.

    #109153
    Tom
    Lead Developer
    Lead Developer

    Still waiting on the review team to approve it – they must be backed up.

    I’ll update you here as soon as it’s released.

    #109233
    Tom
    Lead Developer
    Lead Developer
    #109315
    Radu Antoniu

    Thank you Tom! Works great!

    #109360
    Tom
    Lead Developer
    Lead Developer

    Awesome 🙂

    #246358
    Philipp

    Great plugin! Especially the “equal-heights” JS. Maybe one could integrate this plugin to GeneratePress Premium, so the css grid framework does not load twice? Or something like a plugin option “do not load css” 🙂

    #246390
    Tom
    Lead Developer
    Lead Developer

    I agree – that would be very useful!

    I’ll see what I can do 🙂

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