Section article lists - how to display articles lists in an <ul>

Beantwortet

4 Kommentare

  • Ifra Saqlain
    Community Moderator
    Most Engaged Community Member - 2022
    Most Engaged Community Member of The Year - 2021

    Hey Jaala Seifipour, go to your style.css file via Edit Code and paste this code at the bottom.

    li {display: list-item; list-style-type: disc;}

     

    Thanks

    Team

    0
  • Jaala Seifipour

    That did it! Thank you, Ifra Saqlain.

    0
  • Adam Garcia

    Hi. How would you do it so that only article titles are bulleted and not subsection titles?

    0
  • Ifra Saqlain
    Community Moderator
    Most Engaged Community Member - 2022
    Most Engaged Community Member of The Year - 2021

    Hi Adam Garcia :)

    It depends on classes and list tags as you want to add bullets to article titles only so you can use class.

    ex. 

    li.article-list-items { 
    display: list-item; list-style-type: disc;
    }

     

    same as, you have different classes in your subsections so you can use that class to remove bullets from subsectio items.

    ex.

    li.subsection-list-items { 
    display: block; list-style-type: none;
    }

     

    There are more different types to achive this :)

     

    Hope it will help you.

    Thank You

     

     

    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.

Powered by Zendesk