This snippet uses Javascript to break the WordPress comment form into two columns. These columns have Column Classes applied so they will match the site’s grid, scale down proportionally, and on small screens switch to a single column.
jQuery(document).ready(function($){ | |
// Two Column Comment Form | |
// Author: Bill Erickson | |
// URL: http://www.billerickson.net/code/two-column-comment-form/ | |
if( $('.comment-form-author').length ) { | |
$('.comment-form').prepend( '<div class="one-half comment-form-right" />' ); | |
$('.comment-form').prepend( '<div class="one-half first comment-form-left" />' ); | |
$('.comment-form-author').appendTo( '.comment-form-left' ); | |
$('.comment-form-email').appendTo( '.comment-form-left' ); | |
$('.comment-form-url').appendTo( '.comment-form-left' ); | |
$('.comment-form-comment').appendTo( '.comment-form-right' ); | |
} | |
}); |