I can't figure out how to added a custom theme to a region or block in Drupal 7.
This is block--main-column-3.tpl.php
<?php if ($block->subject): ?>
<h2><a href="what-is-nations.html#jobs"><?php print $block->subject ?></a></h2>
<?php endif;?>
<div class="info-graph-section income">
<object type="image/svg+xml" data="<?php print path_to_theme(); ?>/images/income.svg">
<!-- fallback image in CSS -->
</object>
</div>
<?php if ($block->content): ?>
<?php print $content ?>
<p><a href="what-is-nations.html#jobs">Learn More <i class="fa fa-chevron-right"></i></a></p>
<?php endif;?>
This is page.tpl.php
<?php if($page["main-column-3"]): ?>
<div class="col-lg-4 col-sm-4">
<?php print render($page["main-column-3"]) ?>
<div class="info-graph-section housing">
<object type="image/svg+xml" data="<?php print path_to_theme(); ?>/images/housing.svg">
<!-- fallback image in CSS -->
</object>
</div>
</div>
<?php endif; ?>
It gets rendered but it's not using my theme.
I have a region called content-column-3 and I have a block in that region.
What's the step that I'm missing here?
Thanks.
Edit:
I'm trying to put the content below the image while keeping the title above the image. This is what it looks like now
Edit: .info
name = Nations
description = Nations Drupal Theme
core = 7.x
stylesheets[all][] = css/bootstrap.css
stylesheets[all][] = css/custom-styles.css
regions[content] = Content
regions[content-header] = Content Header
regions[content-main] = Content Main
regions[main-column-1] = Main Column 1
regions[main-column-2] = Main Column 2
regions[main-column-3] = Main Column 3
regions[footer-column-1] = Footer Column 1
regions[footer-column-2] = Footer Column 2
regions[footer-column-3] = Footer Column 3
regions[footer-copyright] = Footer Copyright
features[] = main_menu