I have a simple CodeIgniter view that simply refuses to show the border around the form even though I have used the fieldset and legend tags.
I don't believe the CSS is overriding this anywhere but at this point I don't even know how to check (a fairly large CSS split over multiple files if this statement is true).
Here's the simple HTML. Help!
<fieldset>
<legend>Log In</legend>
<?php
echo form_open('form/login');
echo form_input('email', set_value('email', 'Email'));
echo form_password('password', set_value('password', 'Password'));
echo form_submit('submit', 'Log In');
echo form_close();
?>
</fieldset>