How to change the color of every hypertext link ?

Hey Tristan!

Here’s a quick solution for the specific rich text editor:

$w.onReady(function () {
  $w("#html1").onMessage( (event) => {
    $w('#text1').html = event.data.replace(/\<a/g, `<a style="color:#0782C1;text-decoration:underline"`)
  }); 
});

This will make the links generated by the rich text editor have the given color, with an underline.

A more comprehensive solution for the specific problem will be coming soon.

J.