Hello, fairly new user here and hoping this is an appropriate place for this question. Please keep in mind I am not skilled an html, rather I have some skill in google search.
I'm having trouble creating an unordered list with bullet points for our TNEW contribution pages. I've tried a couple of variations of html but I still get just floating text and no bullet points. Does anyone have any idea what my issue is? Below is the coded paragraph. Any guidance is appreciated thank you.
<UL>
<li> Lorem ipsum dolor sit amet</li> <br /> <li>Lorem ipsum dolor sit amet</li><br /> <li>ILorem ipsum dolor sit amet</li><br /> <li> Lorem ipsum dolor sit amet<br /><br />Lorem ipsum dolor sit amet</li> </body>
FYI a clever trick (and you can do this in the TNEW editor or even in the forum comments editor here!) is to build elements in a WYSISYG editor, then look at the structure in the HTML view.
So here you can use but bullet point button below to create a list:
Then go to Tools > Source Code and see how it actually coded:
<ul> <li>bullet</li> <li>point</li> <li>list</li> <li>created here</li> </ul>