Hi stebson,
If you want to disable the Masshead on iPad and Mobile, we have two solutions for you.
Option 1: Create the custom.css file in the css folder and add the bellow CSS code section to file.
@media only screen and (max-width:768px) {
#ja-content-mass-top {
display: none;
}
}
Option 2: Open the spotlight-1.php file and add “hidden-phone” and “hidden-tablet” for “ja-masshead-wrap” div ( please look bellow code section)
<?php if ($this->countModules('masshead')) : ?>
<!-- MASSHEAD-->
<div class="ja-masshead-wrap hidden-phone hidden-tablet">
<div class="row">
<div class="span12">
<jdoc:include type="modules" name="<?php $this->_p('masshead') ?>" style="raw" />
</div>
</div>
</div>
<!-- //MASSHEAD -->
<?php endif ?>
Best regards,