I would like the JA Mood template to be applied to the /component/tags/tag/ pages. From comparing the source code to any articles page it seems a different page wrapper is used.
Right after the header the article main content starts with
<!-- MASTHEAD -->
<div class="wrap t3-masthead ">
<div class="ja-masthead" style="background-image: url('/......jpg')">
<div class="ja-masthead-detail">
<h3 class="ja-masthead-title">....</h3>
<div class="ja-masthead-description">...</div>
</div>
</div>
</div>
<!-- //MASTHEAD -->
<!-- Add Color for background masthead -->
<!-- // Add Color for background masthead -->
<div id="t3-mainbody" class="container t3-mainbody">
<div class="row">
The tags page however starts with
<div id="t3-mainbody" class="t3-mainbody">
<div class="container">
<div class="row">
<!-- MAIN CONTENT -->
<div id="t3-content" class="t3-content col-xs-12">
<div id="system-message-container">
How can I apply the articles page wrapper (default?) to the tag pages?
Thank you.