How to Remove a T3 Framework Footer
The T3 Framework template for Joomla, developed by Joomla Art, is a foundation for building a custom Joomla template. Like most templates, T3 comes with a built-in footer section. If you do not want your site to have a footer, easily remove the footer in the template without causing problems with your site. Should you later change your mind, it's easy to re-enable the footer.
Instructions
-
-
1
Sign in to your Joomla site administration panel. Click on "Extensions," and then click on "Template Manager."
-
2
Click on "Templates," and then click on the T3 Framework template.
-
-
3
Click on "Edit css/template.css." Browse through the code until you find the following:
/* FOOTER
--------------------------------------------------------- */
#ja-footer {
background: url(../images/grad3.gif) repeat-x bottom #F6F6F6;
border-top: 1px solid #fff;
clear: both;
padding: 20px 0;
} -
4
Change the code to:
/* FOOTER
--------------------------------------------------------- */
#ja-footer {
background: url(../images/grad3.gif) repeat-x bottom #F6F6F6;
display: none;
border-top: 1px solid #fff;
clear: both;
padding: 20px 0;
} -
5
Click on "Save and Close" to remove the footer.
-
1
Tips & Warnings
If you want to re-enable the footer in the future, simply access the template and remove the following line:
display:none;