diff --git semanticviews.theme.inc semanticviews.theme.inc
index fdd3e91..537b4c1 100644
--- semanticviews.theme.inc
+++ semanticviews.theme.inc
@@ -15,7 +15,7 @@ function template_preprocess_semanticviews_view_fields(&$vars) {
   $vars['fields'] = array(); // ensure it's at least an empty array.
   foreach ($view->field as $id => $field) {
     // render this even if set to exclude so it can be used elsewhere.
-    $field_output = $view->style_plugin->get_field($view->row_index, $id);
+    $field_output = trim($view->style_plugin->get_field($view->row_index, $id));
     $empty = $field_output !== 0 && empty($field_output);
     if (empty($field->options['exclude']) && !(($vars['options']['skip_blank'] || $field->options['hide_empty']) && $empty)) {
       $object = new stdClass();
