Mobile Kit: How to display numbers in ordered list again

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
11/5/2013 6:11:03 AM
Gravatar
Total Posts 220

Mobile Kit: How to display numbers in ordered list again

Hi Joe,
Can you tell me how I can display the numbers in the ordered list again?

I commented out in style-reset.css:
/* ol, ul { list-style: none; } */

but it leads to nothing.
The numbers were still missing.

Then I add
ol.wochenkarte { list-style-type: decimal; } - (the ol is formatted so)

but this fails also :-(

Best
Matthias

11/5/2013 6:48:40 AM
Gravatar
Total Posts 18439

Re: Mobile Kit: How to display numbers in ordered list again

Hi Matthias,

After making css changes did you reset the skin guid?

Administration > Advanced Tools > Design Tools > Cache Tool

The browser caches css so you need to reset the skin guid to make it load the new css.

Best,

Joe

11/5/2013 9:29:56 AM
Gravatar
Total Posts 220

Re: Mobile Kit: How to display numbers in ordered list again

Yes, now I have done it smiley

But no numbers ...
I think I make some stupid mistake

11/5/2013 11:55:52 AM
Gravatar
Total Posts 18439

Re: Mobile Kit: How to display numbers in ordered list again

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

11/5/2013 4:44:15 PM
Gravatar
Total Posts 220

Re: Mobile Kit: How to display numbers in ordered list again

add it to the bottom of style.css

The clue was the decisive smiley

Best
Matthias

11/7/2013 5:02:53 AM
Gravatar
Total Posts 220

Re: Mobile Kit: How to display numbers in ordered list again

Oh, by the way: This tool is fabulous yes

You must sign in to post in the forums. This thread is closed to new posts.