How to Change the Footer In Joomla?

12 minutes read

To change the footer in Joomla, you can follow these steps:

  1. Log in to your Joomla administration panel by accessing the "/administrator" URL of your website.
  2. Once logged in, navigate to the "Menus" tab and select "Main Menu" or any other menu used for your website.
  3. Locate the menu item associated with the footer you want to change. It is usually named "Footer" or something similar.
  4. Click on the menu item to edit its details. You may need to click on the checkbox next to the menu item and then select the "Edit" button.
  5. In the menu item editing page, find the "Text" or "Article" field. This field contains the content displayed in the footer.
  6. Modify the text or HTML code in the "Text" or "Article" field to customize the content of your footer. You can add links, images, or any desired content.
  7. Save your changes by clicking on the "Save" or "Apply" button.


By following these steps, you can easily change the footer content in Joomla. It's important to note that the exact steps may vary depending on the specific version and template you are using, but the general process should remain similar.

Best Joomla CMS Hosting Providers in 2024

1
DigitalOcean

Rating is 5 out of 5

DigitalOcean

2
AWS

Rating is 4.9 out of 5

AWS

3
Vultr

Rating is 4.8 out of 5

Vultr

4
Cloudways

Rating is 4.7 out of 5

Cloudways


What is the HTML markup for a basic footer in Joomla?

In Joomla, the HTML markup for a basic footer can be created using module positions or a custom HTML module. Here is an example of a basic footer markup using module positions:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<footer>
    <div class="container">
        <div class="row">
            <div class="col-md-6">
                <jdoc:include type="modules" name="footer-left" style="xhtml" />
            </div>
            <div class="col-md-6">
                <jdoc:include type="modules" name="footer-right" style="xhtml" />
            </div>
        </div>
    </div>
</footer>


Explanation:

  • The tag represents the footer section of the webpage.
  • The
    is used to create a container to hold the footer content.
  • Inside the container, a
    is used to create a row to hold the columns.
  • The footer content is divided into columns using the Bootstrap grid system (
    ). You can adjust the column classes and structure according to your needs.
  • Inside each column, the :include> Joomla code is used to load modules assigned to module positions named "footer-left" and "footer-right".
  • The style="xhtml" attribute ensures the modules are rendered as XHTML.


Note: The actual appearance and styling of the footer will depend on the Joomla template being used, as well as any custom CSS that may be applied.


What is the method to change the footer copyright text in Joomla?

To change the footer copyright text in Joomla, you can follow these steps:

  1. Log in to the Joomla administrator backend.
  2. Go to the "Extensions" menu and click on "Templates".
  3. From the list of templates, click on the template you are using on your website.
  4. This will open up the template settings. Look for an option called "Custom Code".
  5. Under the "Custom Code" section, you should find options to enter custom HTML, CSS, and JavaScript code.
  6. In the HTML code section, find the area where the footer copyright text is located. It is usually indicated by a comment like "".
  7. Edit the text within that HTML code to the desired copyright text you want to display.
  8. Click "Save" or "Apply" to save the changes.
  9. Go to your website and refresh the page to see the updated copyright text in the footer.


Note: The exact steps may vary slightly depending on the Joomla version and the template you are using, but the general concept of finding the template settings and editing the HTML code remains the same.


How to change the footer link color on hover in Joomla?

To change the footer link color on hover in Joomla, you will need to modify the CSS code of your Joomla template.


Follow these steps:

  1. Login to the Joomla administrator backend.
  2. Go to "Extensions" and click on "Templates".
  3. Find and click on your current template.
  4. In the template details page, look for the "Template Options" button and click on it.
  5. In the template options, find the "Custom CSS" or "Custom Code" section.
  6. Add the following CSS code to change the footer link color on hover:
1
2
3
#footer a:hover {
    color: #ff0000;
}


In this example, the color code "#ff0000" represents the desired hover color. You can replace it with any other valid color code. Note: If your template uses a different ID or class for the footer area, you will need to modify the CSS selector accordingly.

  1. Save the changes.
  2. Clear your Joomla and browser cache to reflect the changes on the website.


After following these steps, the footer link color should change when you hover over it. Adjust the CSS code to match your specific template's HTML structure if necessary.

Best Joomla Books to Read in 2024

1
The Official Joomla! Book (2nd Edition) (Joomla! Press)

Rating is 5 out of 5

The Official Joomla! Book (2nd Edition) (Joomla! Press)

2
Joomla! 4 Masterclass: A practitioner's guide to building rich and modern websites using the brand-new features of Joomla 4

Rating is 4.9 out of 5

Joomla! 4 Masterclass: A practitioner's guide to building rich and modern websites using the brand-new features of Joomla 4

3
Joomla 3 Explained: Your Step-by-Step Guide to Joomla 3

Rating is 4.8 out of 5

Joomla 3 Explained: Your Step-by-Step Guide to Joomla 3

4
Official Joomla! Book (Joomla! Press)

Rating is 4.7 out of 5

Official Joomla! Book (Joomla! Press)

5
Joomla! For Dummies

Rating is 4.6 out of 5

Joomla! For Dummies

6
Using Joomla!: Efficiently Build and Manage Custom Websites

Rating is 4.5 out of 5

Using Joomla!: Efficiently Build and Manage Custom Websites

7
Joomla! Bible

Rating is 4.4 out of 5

Joomla! Bible

8
ChronoForms 3.1 for Joomla! site Cookbook

Rating is 4.3 out of 5

ChronoForms 3.1 for Joomla! site Cookbook


How to change the font size in the footer text in Joomla?

To change the font size in the footer text in Joomla, you can follow these steps:

  1. Log in to the Joomla administrator backend.
  2. Go to "Extensions" and select "Templates" from the drop-down menu.
  3. In the Templates manager, select the template you are using for your website.
  4. Click on the "Template Options" button, usually located in the upper-right corner of the screen.
  5. In the Template Options, navigate to the "Custom Code" or "Custom CSS" section.
  6. Depending on the template, you might find a specific field to enter CSS code, or you may need to click on a "Custom CSS" link to access a separate window.
  7. In the Custom Code or Custom CSS field, enter the following CSS code to change the font size of the footer text:
1
2
3
.footer {
   font-size: 14px;
}


  1. Adjust the value of 14px to your desired font size.
  2. Save the changes and exit the Template Options.
  3. Visit your website's front-end to verify that the footer text font size has been changed to the specified value.


How to change the footer background color in Joomla?

To change the footer background color in Joomla, you can follow these steps:

  1. Log in to your Joomla administration panel.
  2. Go to the "Extensions" menu and select "Templates" from the drop-down list.
  3. In the Templates overview page, locate and click on the template you want to modify.
  4. In the template editor, look for the "Custom CSS" or "Custom Code" section. This is usually found under the "Advanced" or "Customization" menu.
  5. Inside the Custom CSS section, add the following CSS code to change the footer background color:
1
2
3
#footer {
    background-color: #XXXXXX; 
}


Replace #XXXXXX with the hexadecimal code of the desired color. You can find numerous color picker tools online to help you choose the right code.

  1. Save the changes.


Now, when you visit your website, the footer background color should be updated according to the code you added in the template's Custom CSS section.

Facebook Twitter LinkedIn Telegram

Related Posts:

To change the module name in the Joomla module manager, follow these steps:Log in to your Joomla admin panel.Go to the Extensions tab and click on Module Manager.Find the module whose name you want to change and click on its title to open the editing screen.In...
To install Joomla in cPanel, you need to follow these steps:Download Joomla: Visit the official Joomla website (joomla.org) and download the latest stable release of Joomla. Save the downloaded file on your computer. Login to cPanel: Open your cPanel account b...
To install Joomla on localhost, follow these steps:Download Joomla: Go to the official Joomla website and download the latest version of Joomla. Save the downloaded file to a desired location on your computer. Install a Local Server: To run Joomla on your comp...