Hi there,

I'm wondering how to remove the "container-24 class" from a zone. I tried this with no success.

function omega_kickstart_preprocess_zone(&$vars) {
    if($vars['zone'] == 'content'){
        $content_classes = &$vars['content_attributes_array']['class'];
unset($vars['content_attributes_array']['class']['container-24']);
    }
}