Bulleted List In Front Page 3, 4 & 5

Homepage Community Forums Optimal Theme Support Bulleted List In Front Page 3, 4 & 5

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #22342
    Sarah
    Customer

      How do I get a bulleted list to show in Front Page 3, 4 & 5? Thank you for your help!

      #22359
      Wes
      Moderator

        Do you already have the HTML code added to your site?

        If you do, then you can add this to your CSS and it should enable the bullet/disk to show up (it’s disabled by default for li) –

        .front-page li {
            list-style-type: disc;
            margin-left: 40px;
        }

        That enables it for any time you use li on the homepage. If you use li on other parts of the front page and prefer to keep those without the bullets, then you can create a class and use that instead like this –

        HTML

        <ul class="bullets"> 
            <li>text</li> 
            <li>text</li> 
            <li>text</li> 
        </ul>
        

        Then add this code to your CSS –

        .bullets li {
            list-style-type: disc;
            margin-left: 40px;
        }

        Let me know if that helps

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.