I am looking to remove system generated css from my nodes in drupal.
Here is the code from my template:
<?php if (isset($content['field_portrait_image'])) { echo '<div class="portrait-image">'; print render($content['field_portrait_image']); echo '</div>';} ?>
and here is what is being generated:
<div class="landscape-image"><div class="field field-name-field-landscape-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" src="http://logan-net.com/sites/default/files/ktgigpic-mini.png" width="300" height="225" alt="" /></div></div></div></div>
as you can see, there are 3 extra divs in there with a whole plethora of extra classes. How can I just get it to output what is in my template?