Hi Tobe --
You can use custom Javascript to add some HTML to the page. For example:
$(document).ready(function(){
if (window.location.href.match(/courses\/\d+\/settings/)) {
// change #left_side_inner to target desired location on the page
$('#left_side_inner').prepend(
'<div id="my-custom-text">Custom text and markup go here.</div>'
);
};
});
The code above basically checks to see if the user is on the Course Settings page, and if so it adds a new div to the page just before the #left_side_inner div. You could modify that to target some other part of the page as appropriate.
Be aware that modifying page content with Javascript like this can be brittle -- if the underlying page markup changes, your script can stop working.
Good luck!
--Colin
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.