javascript - impress.js - bulleted list -


i have question concerning impress.js. wanted use bulleted list inside div element of class "step slide", not able this.

is not possible or if is: point me mistake making? code use is:

<div class="step slide" data-x="0" data-y="-1500">     <q>aaa</q>     <ul>         <li>aaa</li>         <li>aaa</li>         <li>aaa</li>     </ul> </div> 

the text appearing not list.

first of all, div doesn't have class of step slide, has class of step , class of slide - make 1 class, make them together:

<div class="stepslide"> <div class="step-slide"> <div class="step_slide"> 

probably style overwriting ul, try adding in head tag:

<style>     .stepslide ul{         list-style-type: bullet !important;     } </style> 

Comments

Popular posts from this blog

dns - How To Use Custom Nameserver On Free Cloudflare? -

python - Pygame screen.blit not working -

c# - Web API response xml language -