I\'m trying to customize the CSS/HTML for error message displays in codeigniter so I can apply a tag too each and style them up.
I tried to Google this and search t
You can do something like this...
$this->form_validation->set_error_delimiters('', '');
See the related Codeigniter documentation
Note: Updated to correct function reference (validation should be form_validation).