Hi Coleen. Sorry about the thread being hi-jacked; my fault. Sure, you can accomplish that with a child theme and a little coding. Creating a child theme with Hueman is pretty easy:
1. In Theme Options click the Help tab in the upper righthand corner.
2. One of the options in the list is “Download the sample child theme”. This downloads the theme zip file to your local computer.
3. Install the new theme in your Admin panel by selecting Add New > Upload Theme > Choose File, then select the zip file you downloaded.
4. Activate the child theme.
You’ll now have a pre-configured child theme with a style.css file and functions.php file to which you can add customizations.
To insert your ads:
1. Appearance > Theme Options > Sidebars, create a new dynamic sidebar with a unique Sidebar ID; something like “my-ad-sidebar”.
2. Appearance > Widgets, add a text widget to the new sidebar and place your ad content in the widget.
3. Copy footer.php from the parent theme to your child theme. The ad won’t be in the footer but the footer.php file contains the closing tags for the section above it.
4. At the top of the footer.php file you’ll see this:
.
</div><!--/.main-inner-->
</div><!--/.main-->
</div><!--/.container-inner-->
</div><!--/.container-->
5. Add the code for the sidebar:
.
</div><!--/.main-inner-->
</div><!--/.main-->
</div><!--/.container-inner-->
<?php
echo '<div class="my-ad-widget">'; // add a container
dynamic_sidebar('my-ad-sidebar'); // insert the sidebar
echo '</div>';
?>
</div><!--/.container-->
6. Add the following to your child theme css:
.my-ad-widget {
text-align: center;
}
Let me know if you have any questions.