Using Column Classes

Genesis comes pre-built with a great bit of CSS called Column Classes. This allows you to easily make multiple columns of content with a bit of CSS. You can also add this to any theme with this CSS.

There’s two different ways I set up client sites to use this:

  • Adding Editor Styles
  • Div Shortcode Plugin

Adding Editor Styles

If the client is somewhat comfortable with HTML – she’s not afraid to click the “HTML” tab in the editor – then I’ll add the column classes to the editor’s stylesheet. This will make it so the columns are visible in the editor and the client can easily see where the content she’s writing will show up. I also recommend using the fullscreen editor when using this because the inline one is a bit too small.

In your theme, create a file called editor-style.css and add the column class CSS styles to it. You can also add any other styles you’d like reflected in the editor (I often add the headlines styles so the client can visually see how her h2’s and h3’s will look from the editor).

Then, add this to your functions.php file: add_editor_style( 'editor-style.css' );.

That’s it! Now when editing a post, switch to HTML view and add this:

<div class="one-half first">
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.
</div>
<div class="one-half">
Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.
</div>
view raw gistfile1.txt hosted with ❤ by GitHub

When you switch back to Visual view, your editor should look like this:

Div Shortcode Plugin

For those who get completely lost in the HTML tab, I have a plugin that let’s them use [[div]] shortcodes. Once Div Shortcode Plugin is activated, they just have to write something like this in the Visual Editor:

[div class="one-half first"]
This is the left column
[end-div]
[div class="one-half"]
This is the right column
[end-div]
view raw gistfile1.txt hosted with ❤ by GitHub

The benefit here is that they can see exactly where in the Visual editor one column is ending and another is beginning. They’re able to control div’s without ever switching to the HTML view (where they might get lost).

Other Notes

When building out a site, I’ll often create two sample pages using each technique so the client can choose which is best for her.

If every page will have the same number of columns, you might consider pre-populating the content area with default text. This way they never have to switch to HTML mode to create the columns – they are there already.

It looks like a future version of Genesis might include icons in the TinyMCE Editor for creating the columns, which will give you one more way for doing this.

Bill Erickson

Bill Erickson is the co-founder and lead developer at CultivateWP, a WordPress agency focusing on high performance sites for web publishers.

About Me
Ready to upgrade your website?

I build custom WordPress websites that look great and are easy to manage.

Let's Talk

Reader Interactions

Comments are closed. Continue the conversation with me on Twitter: @billerickson

Comments

  1. Adam King says

    Hey Bill,

    Interesting alternative to just using the column class div tags. I like it because it seems to compartmentalize things much easier.

    Have you ever encountered any problems adding a vertical column rule to the Genesis column class CSS? I’d just like to have a simple 2x vertical divider between the columns.

    I’m only asking because no matter what CSS or CSS3 markup I use, nothing is generated.

    Thanks again for your work. Your tutorials have really helped me over this last year to learn the Genesis back end.

    • Bill Erickson says

      I’d recommend adding a 2px border-left on all the different options ( .one-half, .one-third…), then remove the border from .first.

      The only issue you’ll have is that the lines won’t all be the same height (each one will be as tall as the div the border is applied to). There’s two possible approaches for same line height with differing divs:
      – Add a div wrapper, like .one-half-wrapper, which will add a background image in the right place. Do the same for .one-third-wrapper… so that each one puts the lines as a background image.
      – Use jQuery to automatically resize them to the height of the longest one.

      • Adam King says

        Ok, that was almost too simple. 😉

        Thanks for the help. It worked just fine.

        For anyone curious, I just added this line to the main column class section of the CSS for the Minimum Child Theme:

        border-left: 1px dotted #3f9291;

        and just simply added border:none; to the #column class .first: section.

        Thanks again and happy new year.

    • Simon Wise says

      Hi Bill,
      Sorry if this has already been asked/answered but I can’t find anything. Is it possible to use the column classes and attach them to another class? I tried an add_filter approach without much luck.

      For example: I want to display content from a front page featured post widget in 3 columns. I guess I could add the percentage value but thought it may be better to use the column classes.

      • Bill Erickson says

        Yes, these classes can be applied to any element on the page. Unfortunately I don’t believe the featured post widget has any filters in place for customizing the classes.

        Personally I remove the featured post/page widget from every site I build and create custom widgets.

  2. Cathy Tibbles says

    Thanks Bill – this is great! I’m combining this with the sample child theme that you’ve provided under GNU – bless your heart, as they say in the south! 🙂 I’m also looking for some direction on how to include plugins in a theme that wont be deactivated if the owner changes the theme. Do you leave instructions to leave certain plugins installed? however, this plugin for columns without the theme-specific css will still break the layout – do you think css like this belongs in a plugin?

  3. Richard Buff says

    Hi Bill,

    Couple quick questions:

    1) Is there any way to use both the Div Shortcode Plugin and editor styles at the same time? For example you can’t insert one-half columns with the plugin and have the columns actually render in the Visual Editor can you? I assume this isn’t possible but thought I’d ask.
    2) If you add a div, like [div class=”one-half first”] IMAGE [end-div], and the image is floated, in the visual editor the image will appear outside of the shortcode. Is this just a limitation of the editor or any way around this?

    • Bill Erickson says

      1. Unfortunately no. Shortocdes are not executed in the editor. This is the specific reason they are being used in this instance (as opposed to writing the HTML).

      2. “That’s a feature, not a bug”. Floated images will float next to everything, including the text and shortcodes after them. Because there’s not actually an HTML div there to separate it, the visual editor is displaying it correctly.

      • Richard Buff says

        Thanks for the reply Bill. What ended up being the best solution for my current issue today with a client (that prompted my questions) was something in the Smashing Magazine article (http://wp.smashingmagazine.com/2011/10/14/advanced-layout-templates-in-wordpress-content-editor/) that I would have noticed a lot sooner if I hadn’t just skimmed the article the first time. They use a grey dotted border and a light background to style certain divs in the visual editor only. For some dumb reason, it never occurred to me to use the admin stylesheet to outline sections/columns in the visual editor and style them in a way different from how they would be presented on the front end. Before I was just copying and pasting relevant CSS to the admin stylesheet and not altering it. Now the chances of the client backspacing over one of my pre-set divs is greatly reduced since the individual divs are clearly marked. Just thought I’d share that, in case someone else finds it useful in the future.

  4. NeilC says

    I must be thick because I think I’ve followed the instructions to the letter and neither method works for me. I get one portion of text above the other not columnated.

    • Bill Erickson says

      Do you have the column class CSS in your style.css file? Open style.css and search for one-half. If nothing comes up, you don’t have it. Add this CSS to your stylesheet.

  5. Nick says

    I have columns going. How do I revert back to full width for content below a section with columns?

    • Bill Erickson says

      I usually put an hr under it to clear it. Or you could wrap the columns in another div with a clearfix class (and include the clearfix css in your theme).

  6. mattdotcom says

    Hi Bill – thanks for the article

    I really want to have the all-visual-editor option here for my html-phobic clients. But, the problem I keep having with div short code plugins, or the Genesis Simple Column Shortcode plugin, is extra line breaks and getting added after the shortcode, pushing content down on subsequent columns. I think this is happening because more often than not, the first line of each columns is wrapped in an or tag, and the translation between visual and html editor does not want the shortcode and the tag on the same line for some reason.

    Any ideas on how to solve this? Did I make the issue clear? it’s a bit hard to describe without images.

    Thanks!

    • Bill Erickson says

      If you put the shortcodes or divs on their own paragraph, WordPress won’t wrap them in paragraph tags. Ex:

      [[div class=”one-half first”]]

      My content goes here

      [[end-div]]

      Another approach you might try is the Raw HTML plugin. I know it’s popular with membership plugins that require you adding shortcodes and markup to your pages.

  7. Raghu says

    I couldn’t get nested div’s to work using this plugin. I’m trying to the following

    div class content box blue
    – div one -half first
    – end
    – div one-half
    – end
    end

    I was expecting entire block of div wil have blue background, but only first few lines have blur box.

  8. Dale says

    Hi Bill

    How would I go about changing the CSS to allow for uneven columns in a four column layout. ie.
    First Column: 40%
    Second Column: 10%
    Third Column: 40%
    Fourth Column: 10%

    Is this possible or should I use a plugin?
    Thanks

  9. Chess says

    I have activated the plugin and copied and pasted the div short code you provided as a test.

    What I get is the test stacked on top of each other and not in columns. Am I missing something critical?

    This is the left column

    This is the right column