How to add footer to Canvas

Jump to solution
morgan_j
Community Participant

I have been asked to see if it is possible to added some institution related links as a footer to Canvas pages.  Is this possible?  If it is possible I'm hoping someone who has done this would be able to provide some code examples and guidance of exactly how to accomplish this task.  Thank you!

2 Solutions

When you start messing with the default DOM in Canvas, you should probably realize that CSS ids can exist on multiple views. In our instance we put our support number on the login page and the dashboard. So our JS override file uses the #footer CSS id. If you only want it to appear on every view of Canvas no matter what, you have to identify a <div> that has a unique ID that only is rendered in that view. If you want it on ALL pages you might try something like this:

$('#content-wrapper').append('<div><a href="http://www.example.com">Link 1</a> <a href="http://www.example.com">Link 2</a></div>');

View solution in original post

stuart_ryan
Community Novice

HI jmorgan,

I thought I would check in, have any of the solutions that have been proposed resolved your issues? 

If not, please let us know and we can take another look.

Cheers,

Stuart

View solution in original post