andrewwinkler
Hi,
It's better if you put a div tag with 'container' class for the block. For example, in the masthead block: root/templates/ja_social_ii/tpls/blocks/masthead.php
<?php if ($this->countModules('masthead')) : ?>
<!-- MASSHEAD -->
<div class="wrap t3-masthead <?php $this->_c('masthead') ?>">
<jdoc:include type="modules" name="<?php $this->_p('masthead') ?>" />
</div>
<!-- //MASSHEAD -->
<?php endif ?>
you change it to:
<?php if ($this->countModules('masthead')) : ?>
<!-- MASSHEAD -->
<div class="wrap t3-masthead <?php $this->_c('masthead') ?>">
<div class="container">
<jdoc:include type="modules" name="<?php $this->_p('masthead') ?>" />
</div>
</div>
<!-- //MASSHEAD -->
<?php endif ?>
Regards