- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
https://umfrage.libell-e.de/index.php/Datenschutz-limesurvey.html
<a href="./Datenschutz-limesurvey.html">Datenschutz</a>
You could insert it with a little JS in a custom.js file - www.limesurvey.org/manual/Custom_Admin_T...nto_a_custom_theme_2I know that I change it on my own risk.
$(document).on('ready pjax:scriptcomplete',function(){ /** * Code included inside this will only run once the page Document Object Model (DOM) is ready for JavaScript code to execute * @see https://learn.jquery.com/using-jquery-core/document-ready/ */ //Insert a custom footer message $('<div class="container-fluid"><div class="row"><div class="col-xs-12 text-center"><p style="position: relative;bottom:0;font-size:18px !important;font-weight:400 !important;">Place your footer text here</p></div></div></div>').insertBefore('div[id^="bottom"]'); });