J1.5

Customising the Beez template/footer

From Joomla! Documentation

< J1.5:Customising the Beez template
Revision as of 17:57, 12 December 2008 by Bembelimen (talk | contribs) (Added Categories)

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

HTML Reference[edit]

<!-- index.php line 123-133 -->

<div id="footer">
    
    <p>
        <?php echo JText::_('Powered by');?> <a href="http://www.joomla.org/">Joomla!</a>
    </p>

    <div class="wrap"></div>
</div><!-- footer -->

Replace the "powered by" text[edit]

JText::_('Powered by');

Search the language file en-GB.ini for "POWERED BY=Powered by" and edit it:

/* #### en.GB.ini line 253 #### */

POWERED BY=Your text here!

CSS Reference[edit]

#footer[edit]

The following classes and ids will influence the whole div in the footer. Please notice the ordering. Every CSS attribute will be overwritten by the class above.

Main Class[edit]

/* #### layout.css line 1329-1335 #### */

#footer {
    background:#93246F;
    color:#fff;
    padding:5px;
    text-align:right;
    border-top:solid 4px #ccc;
}

layout.css

Secondary Classes[edit]

/* ##### position.css line 15-19 #### */

*
{
    margin: 0;
    padding: 0;
}

position.css

CSS Reference[edit]

.wrap[edit]

The following classes and ids will influence an unused(?) div in the footer. Please notice the ordering. Every CSS attribute will be overwritten by the class above.

Main Class[edit]

/* #### layout.css line 1329-1335 #### */

.wrap
{
    border: 0;
    clear: both;
    float: none;
    font-size: 1px;
    height: 0;
    line-height: 1px;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

position.css

Secondary Classes[edit]

/* ##### position.css line 15-19 #### */

*
{
    margin: 0;
    padding: 0;
}

position.css