Hi, actually I have two more questions:
1) I am unable to slide in embedded elements properly. This works perfectly:
<ul>
<li class="slide">
<h3>first point</h3>
<p>text</p>
<p>text</p>
<li class="slide">
<h3>second point</h3>
<p>text</p>
</li>
</ul>
I am trying to make this work and it doesn't:
<ul>
<li class="slide">
<h3>first point</h3>
<p class="slide">text1</p>
<p class="slide">text1</p>
<li class="slide">
<h3>second point</h3>
<p>text</p>
</li>
</ul>
text1 and text2 is always greyed out...
I was also unable to find the style definition of the greyed out text. Where can I find that?
2) Is there a good way to properly adjust the font size to the size of the window. In my experience, the default setting of the normal text is way to small for full screen so that I set it the font-size in deck-container to 2em.
Thanks!
Greg