Hi Matthias,
try this:
ol.wochenkarte { list-style: decimal inside none; }
add it to the bottom of style.css
note that the mobile kit skin uses css reset
so you may also want to add some indent to the list items like this:
ol.wochenkarte li { padding-left: 20px; }
it works for me with markup like this:
<ol class="wochenkarte">
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
<li>item 4</li>
</ol>
Hope that helps,
Joe