J1.5

Difference between revisions of "Customising the Beez template/footer"

From Joomla! Documentation

< J1.5:Customising the Beez template
m (removedfixed errors)
(Updated links)
Line 5: Line 5:
  
 
<div id="footer">
 
<div id="footer">
      
+
     <p class="syndicate">
 +
        <jdoc:include type="modules" name="syndicate" />
 +
    </p>
 +
 
 
     <p>
 
     <p>
 
         <?php echo JText::_('Powered by');?> <a href="http://www.joomla.org/">Joomla!</a>
 
         <?php echo JText::_('Powered by');?> <a href="http://www.joomla.org/">Joomla!</a>
Line 48: Line 51:
 
</source>
 
</source>
  
[[Customising the Beez template/layout.css|layout.css]]
+
[[Customising the Beez template/CSS/layout.css|layout.css]]
  
 
==== Secondary Classes ====
 
==== Secondary Classes ====
  
<source lang="css">
+
{{:Customising the Beez template/CSS/position.css/*}}
/* ##### position.css line 15-19 #### */
+
 
 +
=== .syndicate ===
 +
 
 +
:''Further information: [[Customising the Beez template/footer/syndicate]]
 +
 
 +
=== p ===
 +
 
 +
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 ====
 +
 
 +
{{:Customising the Beez template/CSS/layout.css/p}}
  
*
+
==== Secondary Classes ====
{
 
    margin: 0;
 
    padding: 0;
 
}
 
</source>
 
  
[[Customising the Beez template/position.css|position.css]]
+
{{:Customising the Beez template/CSS/position.css/*}}
  
 
=== .wrap ===
 
=== .wrap ===
Line 87: Line 96:
 
</source>
 
</source>
  
[[Customising the Beez template/position.css|position.css]]
+
[[Customising the Beez template/CSS/position.css|position.css]]
  
 
==== Secondary Classes ====
 
==== Secondary Classes ====
  
<source lang="css">
+
{{:Customising the Beez template/CSS/position.css/*}}
/* ##### position.css line 15-19 #### */
 
 
 
*
 
{
 
    margin: 0;
 
    padding: 0;
 
}
 
</source>
 
 
 
[[Customising the Beez template/position.css|position.css]]
 
  
 
[[Category:Beez]]
 
[[Category:Beez]]
 
[[Category:Customizing Beez]]
 
[[Category:Customizing Beez]]

Revision as of 23:09, 14 December 2008

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