Brand new user of thematic and the feature site child theme, so i apologize if this question is too basic or answered elsewhere. I know just enough to be dangerous. This is what I tried - and expect it's totally wrong so I appreciate any advice.
I'm trying to replace the random feature image on the feature site home page with Smoothgallery. I've tried to modify the existing childtheme_postheader by removing the 2 lines that I think add the image...
$rand = mt_rand(1, 2);
include "includes/feature-front-$rand.php";
...and replacing with the html version of the smoothgallery code (not the shortcode - which didn't work either). I tried escaping various characters but most likely screwed it up since I'm a total php hack. Here's what i tried to insert...
<div id="myGallery">
<div class="imageElement">
<h3>gleep</h3>
<p></p>
<img src="http://dtrtfk.conceramedia.com/wp-content/uploads/2009/09/gleep.gif" class="full" alt=""/>
</div>
<div class="imageElement">
<h3>domoball</h3>
<p></p>
<img src="http://dtrtfk.conceramedia.com/wp-content/uploads/2009/09/domoball.jpg" class="full" alt=""/>
</div>
</div>
Ideas?