Removing Page Features
Removing features such as the date, in-page links, and the back to top link, can all be removed from your template by use of a layout override. If you use the extended layout override that is included in the template installation package's layout folder, removing features is easily accomplished by deleting their corresponding code. The following code blocks illustrate the feature they correspond to, and the code that you need to remove to remove that feature.
Date
<div class="date-container">
<span class="date-weekday"><?php $now = &JFactory::getDate(); echo $now->toFormat('%A').','; ?></span>
<span class="date-month"><?php $now = &JFactory::getDate(); echo $now->toFormat('%B'); ?></span>
<span class="date-day"><?php $now = &JFactory::getDate(); echo $now->toFormat('%d').','; ?></span>
<span class="date-year"><?php $now = &JFactory::getDate(); echo $now->toFormat('%Y'); ?></span>
</div>
In-page Links
<ul id="access">
<li>Jump to:</li>
<li><a href="/<?php $url->setFragment('content'); echo $url->toString();?>" class="to-content">Content</a></li>
<?php if ($this->countModules('nav')) : ?>
<li><a href="/<?php $url->setFragment('nav'); echo $url->toString();?>" class="to-nav">Navigation</a></li>
<?php endif; ?>
<?php if ($contentBelowCount) : ?>
<li><a href="/<?php $url->setFragment('additional'); echo $url->toString();?>" class="to-additional">Additional Information</a></li>
<?php endif; ?>
</ul>
Back To Top
<a id="to-page-top" href="/<?php $url->setFragment('page-top'); echo $url->toString();?>" class="to-additional">Back to Top</a>
