HTML in Rubric Feedback box

HTML in Rubric Feedback box

by Troy Patterson -
Number of replies: 2

Hi all. 

I have an Assignment with a rubric tied to it. In the feedback box at the bottom, Hypertext links do not stand out very well. So, I thought that I could edit the HTML to change the color of the link. 

Thus: 

<p>xxx has also updated our <a href="https://dearbornschools.org" target="_blank" rel="noreferrer noopener">District Web Page</a>.

became:

<p>xxx has also updated our <a href="https://dearbornschools.org" target="_blank" rel="noreferrer noopener"><font color="0000FF">District Web Page</font></a>.

However, the color doesn't render. In fact, not only does the color not render, but open closing the HTML editor and re-opening it, the code that I added is gone. 

Any thoughts on how I can make this "stick"? Or, is there a setting that I can update to make the links within Feedback comments on an Assignment using rubrics more standard looking?

Thanks. 

Average of ratings: -
In reply to Troy Patterson

Re: HTML in Rubric Feedback box

by stefan weber -
Picture of Plugin developers
try adding inline CSS, maybe that will work:

xxx has also updated our <a style="color:red;" href="https://moodle.org/mod/glossary/showentry.php?eid=13&amp;displayformat=dictionary" title="Glossary of common terms: CSS" class="glossary autolink concept glossaryid5">District Web Page</a>
result:

xxx has also updated our District Web Page
In reply to stefan weber

Re: HTML in Rubric Feedback box

by Troy Patterson -
Awesome! Thanks so much. This works well. I guess it's time to think more in CSS than HTML.