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:
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:
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.


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.
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.
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:
and just simply added border:none; to the #column class .first: section.
Thanks again and happy new year.
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?
Take a look at the Core Functionality plugin.
Yes, the CSS for this would work well in a plugin. It might be a good idea to remove it from your child theme, create a stylesheet called columns.css in your plugin, and then use wp_enqueue_style to add that style to the site.
Thank you for these instructions!
how to make coloms automatic .so when we post can automatic grid
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?
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.
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.
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.
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.