Page 1 of 1

Site News html or clickable links

Posted: Fri Feb 05, 2021 10:13 pm
by tslaftw
Is there a way to make text in the Site News clickable or even able to be copy-pasted?

Currently it loads almost like an image and has no interaction.

It would be nice so we can include links to FAQs, payments, Zoom info, etc.

Thanks

Re: Site News html or clickable links

Posted: Fri Feb 05, 2021 11:00 pm
by Kent Briggs
Players can use the Save button to make the text copy/paste/save-able. You can use html markup like this:

Code: Select all

<a href="http://www.example.com" target="_blank"><u>Click here</u></a>
Always use that target attribute to open a new tab/window. Otherwise the client will be replaced by the new URL.

Re: Site News html or clickable links

Posted: Sat Feb 06, 2021 7:46 pm
by tslaftw
Perfect, the ability to do html markup was exactly what I was looking for.

Thanks!