Is there a file in codeIgniter in which I could just edit so that I can customize the form validation messages?
You can change the Error Delimiters in this way:
<ul>
<?php echo validation_errors('<li>', '</li>'); ?>
</ul>
docs: https://www.codeigniter.com/user_guide/libraries/form_validation.html#changing-the-error-delimiters
For v3: https://www.codeigniter.com/userguide3/libraries/form_validation.html#changing-the-error-delimiters
You can use
<?php echo form_error('field name', '<div class="error">', '</div>'); ?>
for displaying errors individually.
Documentation