Changes between Version 2 and Version 3 of Customize-Moodle-Themes


Ignore:
Timestamp:
May 20, 2024, 2:52:11 AM (6 months ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Customize-Moodle-Themes

    v2 v3  
    4949
    5050
     51==== 02 Customizing the Header
    5152
     53Scenario:Assume you need to add a contact email using the customization options available in the Moodle header.
     54
     55===== Steps to Add a Contact Email by Customizing the Header:
     56
     571. **Log in to Moodle**:
     58   - Access Moodle with administrative privileges using your credentials.
     59
     602. **Access Site Administration**:
     61   - Navigate to "Site administration" in the top-right corner of the page.
     62
     633. **Navigate to Appearance Settings**:
     64   - Under "Site administration," click on the "Appearance" tab.
     65   - Select "Theme settings" or "Theme" depending on your Moodle version.
     66
     674. **Customize Header**:
     68   - In the "Theme settings" section, look for a section labeled "Header" or "Custom header content."
     69
     705. **Add Contact Email**:
     71   - Locate the text box where you can add custom HTML or text content for the header.
     72   - Enter the contact email using HTML to format it appropriately. For example:
     73
     74     {{{
     75 #!css
     76     <div class="header-contact">
     77       Contact us at: <a href="mailto:contact@university.edu">contact@university.edu</a>
     78     </div>
     79     }}}
     80
     81     - This HTML code adds a div with a class for potential styling and includes a mailto link for the contact email.
     82
     836. **Save Changes**:
     84   - Scroll down to the bottom of the page and click on the "Save changes" button to apply the custom header content.
     85
     867. **Verify Header Customization**:
     87   - Go to the main page of your Moodle site to verify that the contact email appears in the header as expected.
     88   - Ensure the email link works correctly by clicking on it to open your default email client.
     89
     90By following these steps, you will have successfully customized the Moodle header to include a contact email, making it easily accessible to users.
     91
     92
     93