J1.5

Customising the Beez template/footer

From Joomla! Documentation

< J1.5:Customising the Beez template
Revision as of 09:22, 29 April 2013 by JoomlaWikiBot (talk | contribs) (→‎Secondary Classes: archiving articles with category removal and addition)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 class="syndicate">
        <jdoc:include type="modules" name="syndicate" />
    </p>

    <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;
}
Further information: position.css/*
Storage location: position.css

.syndicate[edit]

Further information: Customising the Beez template/footer/syndicate

p[edit]

The following classes and ids will influence the p tag. Please notice the ordering. Every CSS attribute will be overwritten by the class above.

Main Class[edit]

/* ##### layout.css line 65-68 #### */

p {
    line-height:1.4em;
    margin:5px 0;
}
Further information: layout.css/p
Storage location: layout.css

Secondary Classes[edit]

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

*
{
    margin: 0;
    padding: 0;
}
Further information: position.css/*
Storage location: position.css

.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;
}
Further information: position.css/*
Storage location: position.css