Copyright text in Footer is left aligned instead of center!

Copyright text in Footer is left aligned instead of center!

by Original Tuoyo -
Number of replies: 2

Moodle Version: 3.7

Theme: Eguru


Please I need assistance concerning the alignment of the copyright footer text. It is aligned to the left, instead of center despite the text-center class being attached to it as seen in the footer block. I have also tried to use inline HTML stylings but it isn't reflected. 


The default content is:

 "<p class="text-center">Copyright &copy; 2015 - Developed by

<a href="http://www.lmsace.com/">LMSACE.com</a>.Powered by <a href="https://moodle.org">Moodle</a></p>"


But even that will not make the text in the copyright section to the center. This is not a universal problem, as the demo site in Eguru site has its copyright text to the center. Please what can I do to rectify the situation? 

Average of ratings: -
In reply to Original Tuoyo

Re: Copyright text in Footer is left aligned instead of center!

by Jean-Roch Meurisse -
Picture of Core developers Picture of Plugin developers Picture of Testers
Hi,
When rendering the "copyright" setting, eguru cleans all html formatting (the version of the demo site is probably slightly different from that of Moodle plugins repository)
To center the copyright statement, add the following rule to "customcss" setting in eguru administration page

#footer .footer-foot {
    text-align: center;
}

Hope this helps!

Cheers

Average of ratings: Useful (1)
In reply to Jean-Roch Meurisse

Re: Copyright text in Footer is left aligned instead of center!

by Original Tuoyo -
Thanks so much. It worked like magic!