Bullet points disappear when using "show more" button

I have a page that I am crating for school that has a large number of bullet points. for style sake, I want a button that says “show more” to expand the text. I have it so that the button works, however the bullet points disappear. How do I fix this?

Please add a screenshot + your code + details about this bullet point. Do you use a Unicode character like this: •
?

@jonatandor35 Wondering if you could maybe expand on this? Im using code I gathered from another one of your comments here using multiple show more/less buttons:
https://www.wix.com/corvid/forum/main/comment/5d25aaba3b52c10017d5a59d

Thats all working fine, Im just trying to add bullets into the “Show More” text thats hard-coded, snippet as such: " fullText1 = shortText1 + “\nCamera\nTV\nComputer” ;"

The Camera, TV and Computer elements I want formatted with bullets (the unicode character you mentioned would also work, but Im curious how to properly format it, for future reference). Based on this thread,
https://www.wix.com/corvid/forum/community-discussion/expanded-text-loses-its-formatting
it sounds like I would have to use html instead of a text substring, but I havent been able to find any good info on html formatting.

If you (or anyone!) could explain a little bit or link me to what Im looking for, that would be much appreciated! :slight_smile:

Ive found a bit more info to get started with formatting text in html. You have to format everything though, including font, size, etc, so be pre-warned, its more work.
Here are the pages that helped me:

Using html to format a text box:
https://www.wix.com/corvid/reference/$w/text/html

Creating a bulleted list in html:
https://www.computerhope. com/issues/ch001311.htm (remove space before “com”)

Ive actually found my own solution that doesnt require any html to keep the formatting, and uses significantly less code. I commented my solution on a separate thread:
https://www.wix.com/corvid/forum/main/comment/5fc5747545cdb100aff49f9b

Hope this helps!