Installing template:
- Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Install/Uninstall
- In the "Extension Manager" choose the first option "Upload Package File".
- Click the "Browse..." button to select the zip file from your computer.
- Click the "Upload File & Install" button.
For more information please visit http://docs.joomla.org/How_to_install_templates
Changing logo:
The logo image for our templates is located in template's images folder and is called logo.png. To modify the logo, simply create your logo in png format, name your file "logo.png" and upload it to the template's images folder (overwrite the existing logo image).
If using different image format (jpg, gif):
1. Upload the image to the template's images folder
2. Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions ->Template Manager
3. Select your template, click edit CSS, select template.css.
4. Look for the following (widh, height, left, top values will be different for each template):
.logo
{
background: url('/../images/logo.png') no-repeat;
width: 200px; height: 100px;
display : block;
position: absolute;
left: 39px;
top: 95px;
z-index: 50;
}
and replace "logo.png" with "imagefilename.format"
For an example, if you created image in jpg format and named it "mylogo", the code above should look:
.logo
{
background: url('/../images/mylogo.jpg') no-repeat;
width: 200px; height: 100px;
display : block;
position: absolute;
left: 39px;
top: 95px;
z-index: 50;
}
To customize the template footer via Joomla administration place one or multiple modules into the "copyright" position. This will replace the default copyright text included in the template footer with the new content provided by the module.
Here are sample steps to configure custom footer:
- Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Module Manager.
- Click "New", select "Custom HTML", then select "Next".
- In the module properties specify:
- Title - Show Title: No
- Position: copyright
- Custom Output: (the desired footer content)
- Save your changes.
You can now use the newly created module for further footer customizations without utilizing additional modules.



















