Tagged Questions
22
votes
16answers
11k views
How can you customize the numbers in an ordered list?
How can I left-align the numbers in an ordered list?
1. an item
// skip some items for brevity
9. another item
10. notice the 1 is under the 9, and the item contents also line up
Change the ...
12
votes
7answers
2k views
Ordered list showing all zeros in IE9
I have an <ol> (ordered list) and in FF, Safari, Chrome it is rendered correctly. However in IE9 it is showing all zeros. It is not a spacing/padding issue because I am able to see the zeros. ...
12
votes
3answers
5k views
Is it possible to specify a starting number for an ordered list with css?
I have a ordered list where I would like the initial number to be 6. I found that this was supported (now deprecated) in HTML 4.01. In this specification they say that you can specify the starting ...
7
votes
4answers
1k views
HTML + CSS: Ordered List without the Period?
I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to specify the separator ...
5
votes
4answers
1k views
HTML + CSS: Numbered list with numbers inside of circles
I'm trying to create an ordered list in CSS + HTML that looks like this:
I can't for the life of me figure out how to do this. I've tried using list-image but then the numerals don't appear. I tried ...
3
votes
4answers
157 views
Adding parenthasis in HTML ordered list
I am working on an iPhone application in which I am loading HTML content in UIWebView.
I want to create a list like this format:
(1) item1
(2) item2
(3) item3
3
votes
1answer
85 views
Wrapping a tag inside a tag in TinyMCE
I'm trying to figure out how I can wrap another HTML tag within when a users click on the ordered list button in TinyMCE.
Example:
<ol>
<li>something</li>
</ol>
Will ...
3
votes
3answers
2k views
Ordered Lists <OL>, Starting index with XHTML Strict?
Is there a way to start an ordered list from a specific index while following XHTML Strict? Using start=n works well, but has been deprecated… The intended purpose is to resume the index with ...
2
votes
2answers
390 views
How can I prefix ordered list item numbers with a static string using CSS?
I want this HTML...
<ol style="list-style:decimal;">
<li>Apples</li>
<li>Oranges</li>
</ol>
...to render like this
Q1. Apples
Q2. Oranges
In other words, I ...
2
votes
4answers
115 views
How can be printed ordered list from number 6 with html only?
How can be printed ordered list from number 6 with html only (if its not possible how should be done)?
Example:
6.home
7.place
8.etc..
9.etc..
Thanks
2
votes
4answers
2k views
Stop text wrapping in lists
I have an ordered list:
<ol>
<li>They used to bring concerns about their children or their marriages. But increasingly parishioners are also telling Glen VanderKloot, a Lutheran minister ...
1
vote
1answer
78 views
Replace ordered list number with prefixed value using CSS and HTML
I am trying to create a style sheet to support the display of a legal document with articles, sections, subsections, etc. I would like the outer most ordered list to display "Article n:" instead of ...
1
vote
1answer
105 views
Decrementing an ordered list
I have a ordered list in an html document, you know, like
<ol>
<li> item one
<li> item two
</ol>
which displays, obviously, as
1. item one
2. item two
I want ...
1
vote
5answers
320 views
Ordered List Index
Is there any way to get the number(index) of a li tag in an ordered list.
I'm trying to get the number that is shown on the side (the list numbering). I know that the traditional way is to use an id ...
1
vote
1answer
205 views
How do you get the numbers of an ordered list to show on the left in IE?
I have a rows of data in div tags that float left and have widths set. They are inside li tags. Everything works fine in chrome and FF, but in IE8 the numbers show up in the middle of my rows, right ...
0
votes
2answers
58 views
Tabular ordered list
I need to make an ordered list with tabular content that renders something like this:
1. Winner 00:00
2. Runner up 00:00
3. Looser 00:00
Now, I've managed to do this using the ...
0
votes
1answer
51 views
Manipulate the position of the number in an ordered list
I have the following HTML
<h1> Dummy title here</h1>
<ol>
<li>
<p>Dummy paragraph here with lots of lines...</p>
</li>
<li>
<p>Another dummy ...
0
votes
1answer
69 views
dynamically using html ordered lists
I am using Jquery and html to create a grid with an ordered list in a GUI. The user can dynamically edit the html content in each of the grid cells. I have two questions:
If each of the li ...
0
votes
2answers
284 views
How to change list to CSV, and vice versa, in PHP
I have a text file like....
arfc@net.xz
editor@magazine.com
nafi@cyber.net
nau@times.com
jai@mail.com
I want to convert it to CSV with the help of a little bit PHP, and I ...
0
votes
1answer
921 views
HTML Horizontal Ordered Lists with Numbering
I'm using an ordered list in order to get numbering, which works perfectly fine when the list is vertical. However, once I make it horizontal, the numbering disappears.
The display attribute in the ...