How to insert a bullet point under a bullet point in emails and Landing pages? | Community
Skip to main content
Srujan_Vishwana
New Participant
March 13, 2015
Solved

How to insert a bullet point under a bullet point in emails and Landing pages?

  • March 13, 2015
  • 2 replies
  • 5796 views
Hi all,

I'm finding it really hard to insert few bullet points under another bullet point. Would be glad if some of you can throw some light on this issue. Is anyone else facing the same problem? Please advise.
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by AlokRa4
Hi Srujan,

You can go with the following code to insert the bullet points under another bullet point, I hope this will fix up the issue you are facing:

<ul>
 <li>
     point 1
        <ul>
         <li>sub point 1</li>
        </ul>
    </li>
</ul>

Thanks!!!
 

2 replies

Srujan_Vishwana
New Participant
March 13, 2015
Thanks Alok. Your suggestion worked! :)

Regards,
Srujan Vishwanath
Dave_Roberts
New Participant
February 13, 2021

Also, check out more info on using lists in email here: 

https://www.litmus.com/blog/the-ultimate-guide-to-bulleted-lists-in-html-email/

 

The HTML provided doesn't have any inline styles to make the display consistent across different inbox platforms, so you'll end up with a similar situation to using <h1> and <p> tags in an email where they're different everywhere you look.

 

 

AlokRa4Accepted solution
New Participant
March 13, 2015
Hi Srujan,

You can go with the following code to insert the bullet points under another bullet point, I hope this will fix up the issue you are facing:

<ul>
 <li>
     point 1
        <ul>
         <li>sub point 1</li>
        </ul>
    </li>
</ul>

Thanks!!!
 
Curtis_Massey
New Participant
February 12, 2021

This saved me so much time, much appreciated!