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
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
1answer
54 views
Problem styling list items
I'm trying to style an ordered list that seemed quite simple but apparently is harder than I thought, what I need to do is to separate every item with a white border below, the problem is the the ...
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
2
votes
2answers
394 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
2answers
663 views
how can i show numbers on an inline ordered list?
I have a list..
<ol>
<li>Login</li>
<li>Address</li>
<li>Shipping</li>
</ol>
It shows the decimal numbers fine, but when I set the ...
2
votes
1answer
469 views
Adding border-bottom to an li in an ol
Trying to add a border-bottom: 1px solid #ccc to an li in an ol.
I want the number of the ol to be inside the border not outside. Right now the border it not below the numbers.
I have these classes ...
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
3answers
5k views
Float image right within li of ol, text left, works in Chrome, not IE/FF
I would like to have an ordered list that has the text on the left and an image for each li within it on the right of the li. So I floated the image to the right and it puts the image correctly on the ...
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
107 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
1answer
326 views
Style (only) decimal of ordered list
Is there anyway to bold the decimals in an ordered list using CSS only? The CMS we are using is spitting out li's with no nested p/span/header tag so I can't bold the li and reset the nested tag...
...
1
vote
2answers
814 views
Remove decimal from ordered <ol> list via CSS?
I assume the answer is "no," but I thought I'd throw the question out there to all you CSS ninjas, since it has cropped up before, and when you're digging through code that involves a whole team, the ...
1
vote
1answer
206 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
0answers
36 views
Numbers in a ordered list appear on the right in IE8
The numbers of the ordered list appear on the right only in IE 8.
CSS snippet for the ordered list,
ol.results {
clear:both;
margin:0 1em 1em;
padding-left:1em;
}
ol.results ...
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
924 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 ...