[eluser]kkoncept[/eluser]
I figured it out and feel pretty stupid because it was a newbie mistake and I am far from a newbie:
the difference is that this:
Code:
<div class="header"><img src="<?php echo base_url();?>images/logo.gif" alt="LOGO" /></div>
<br />
<div class="content">Some content here</div>
Should be this:
Code:
<div id="header"><img src="<?php echo base_url();?>images/logo.gif" alt="LOGO" /></div>
<br />
<div id="content">Some content here</div>
using "id" instead of "class". So, not a CI issue at all but just an example of me making things more complicated than they really are.