Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
2k views

Number nested ordered lists in HTML

I have a nested ordered list. <ol> <li>first</li> <li>second <ol> <li>second nested first element</li> <li>second nested ...
10
votes
2answers
7k views

HTML list-style-type dash

Is there a way to create a list-style in HTML with a dash (i.e. - or – &ndash; or — &mdash;) i.e. <ul> <li>abc</li> </ul> Outputting: - abc It's ...
5
votes
2answers
46 views

li float vs display: inline

Is there a best choice out of float: left or display: inline for aligning list items horizontally? eg: http://www.vanseodesign.com/css/simple-navigation-bar-with-css-and-xhtml/ Personally I dislike ...
5
votes
2answers
351 views

How can I increase the bullet size in a li?

The bullets in IE8 are so small, I tried changing the font-size, but that didn't work. Code: <ul style="padding:0; margin:0; margin-left:20px;"> <li>item 1</li> ...
5
votes
5answers
226 views

How can I handle a list with several hundred items in HTML? (Using Javascript)

I am creating a web page which is designed for mobile safari, and I create a list dynamically. The list is created from a text file in which I receive information and I append this information to the ...
3
votes
3answers
68 views

How to break up an HTML List using CSS Only

I would like to create a list that adds columns as necessary depending on how many list elements are present. Currently I only know how to do this using a table, which I would like to avoid. Is there ...
3
votes
5answers
2k views

CSS: Control space between bullet and <li>

I'd like to control how much horizontal space a bullet pushes its <li> to the right in an <ol> or <ul>. That is, instead of always having * Some list text goes here. I'd like ...
2
votes
1answer
65 views

How could I handle multiple list items being put into a temporary placeholder, and set back to the place where it was removed from?

Description of my issue: I have a html list which created on the fly from an XML, read by PHP. The XML consist a parent node as FRUITS, mid-level nodes as working days(MONDAY, TUESDAY, WEDNESDAY, ...
2
votes
2answers
52 views

HTML Tables vs Lists for form inputs

Everyone knows that you should be only using tables for semantic purposes, to markup tabular data. I personally use ordered lists to markup form inputs. However I have seen arguments pro using ...
2
votes
2answers
97 views

CSS - use character for list marker

Using CSS, how can I set a character like "►" as a list marker for an HTML list?
2
votes
3answers
50 views

Sharing options between selects (using HTML and jQuery)

Looked through many answers, but couldn't find one solving this. I have four (potentially n-number of) <select> lists, with an equal number of <option> possibilities in each, like this: ...
2
votes
1answer
187 views

Why does the list style disappear when display: block is added to a list item in a list (<ul> or <ol>)?

This seems to valid for display: inline; and display: inline-block; too. This is what I mean: ul li { display: block; /* Or display: inline; */ /* Or display: inline-block; */ } <ul> ...
2
votes
2answers
161 views

How to retrieve html li value

I have a list in my aspx page where the values for the list are coming from the database. The data can be added to the list successfully But how can I retrieve the value of the selected list item ...
2
votes
3answers
2k views

HTML/CSS - Remove spaces from line breaks in code for LI

Hey, Is there a way to get browsers to ignore line breaks in the source? <div id="navbar"> <div id="navbar-container"> <ul> <li>HOME</li> ...
2
votes
5answers
667 views

Elements to 'look like' a bullet point list inside an anchor link

I am creating an element on my page like so: <a href=""> <span class="benefits"> Free entry<br /> 20% off in store<br /> First to know about latest courses </span> ...
2
votes
2answers
202 views

How to indent list items using CSS when you have floating blocks?

I observed a relative strange behavior when I use floating images in a document. The list items indentation is made relatively to the 'red line' instead of the 'green' one. Why is this happening and ...
2
votes
6answers
71 views

Which html element is semantically most appropriate for displaying a group of emails?

I have a group of emails (I hesitate to use the word list, as it may prejudice you answers), which I want to display in a tabular manner with columns of Subject, Content, Date, Action (whose value may ...
2
votes
2answers
167 views

Start a list from a certain number

What's the best way to get a ol to start from 'x'? The start tag is depricated and everything I have found on Google has used the :before pseudo class which doesn't work in IE6 or 7. Didn't have ...
2
votes
12answers
1k views

Is using <li> without enclosing <ul> tags dangerous?

What are the dangers of inserting <li>...</li> into a page without enclosing the item(s) in a <ul> block? For example: <div style="border:solid 1px red;"> ...
2
votes
3answers
1k views

Right align some text within a list item

I have a nested unordered list which has main content on the left, and I would like to add options which are floated right, such that they are aligned on the right regardless of the level of ...
1
vote
2answers
44 views

Is there a better or more concise way to do this? [closed]

My goal was to make a list dynamically list itself into two columns, no matter the length of the list. I would really like to hear from people who know more about JavaScript and jQuery than I do if ...
1
vote
1answer
25 views

JQuery - Target following element

I am creating some documentation for an ActionScript 3 framework that I've developed. The feel will be kept as close to the Adobe livedocs as possible for the sake of consistency. There is a panel to ...
1
vote
1answer
30 views

on an unordered list, how do I restrict one list item from being selectable?

A quick sketch of my situation is: <ul id="selectable"> <li class="table" id="header-row"> <ul class="row"> ... </ul> </li> <li class="table"> ...
1
vote
2answers
245 views

javascript - shuffle HTML list element order

I have a list: <ul> <li>milk</li> <li>butter</li> <li>eggs</li> <li>orange juice</li> <li>bananas</li> ...
1
vote
1answer
698 views

Show/hide drop down list based on selection of another drop down list

Yes, I've tried to search answer for this problem and I found many similar questions but none of them seemed to help me. I have drop down list with few options and when user selects one option, ...
1
vote
4answers
117 views

CSS the a blocks move to right when enclosed by ul, li, /li tags

I am using a combination of ul and li tags for a menu and I use display box and a background color to display it as buttons the problems is as soon as I enclose the a tags using li the buttons seem to ...
1
vote
1answer
76 views

Javascript regular expression for creating HTML list

I have to create html list from this code - ali - hammad - shah -- haripur hazara -- gaga goo - naqvi The '-' represents starting of a list and nested list elements have extra '-' symbol as you can ...
1
vote
1answer
79 views

having a problem with ul's and li's in IE6

I am having this problem where I have a set of ul's and li's on my html page. when the li wraps to the second line the bullet is shown on the second line, and not on the first line where it should be. ...
1
vote
1answer
739 views

Sorting html ul/li list in alphabetical vertical blocks

Here's a problem I run into every now and then, that I usually try and solve from a back end perspective, but would like to know if there's a magic solution others have found to solve this on the ...
1
vote
5answers
120 views

Can you have <li>s without them being under a <ul> or <ol>?

I have a navigation that I am using a list for. I have it in a <ul>, but that is messing up my UI because it has weird automatic margins. I tried without the <ul> and they seem to work. ...
1
vote
3answers
119 views

CSS, only affect the top lis of a ul?

I have a nested UL navigation list, with ul's contained inside some other li elements. here's the mark up: <ul class="navigation"> <li><a href="#">No Chidren</a></li> ...
1
vote
0answers
312 views

Excel-friendly html: keeping a list inside a single cell

I know that when generating html that needs to be viewed in Excel, if I want to ensure that <br> tags don't cause a new row to be generated, I can specify <style><!--table br ...
1
vote
5answers
228 views

Does definition list <dl> require that each <dd> will have <dt> tag?

Does definition list <dl> require that each <dd> will have <dt> tag? Example: option1 for each <dd> exist his <dt> also if <dt> empty: <dl> ...
1
vote
2answers
134 views

not able to get a processed list in jquery variable

I have html list <ol id="newlist"> <li>Test <ol> <li>1</li> <li>2</li> ...
0
votes
3answers
18 views

partially reversing listitems with jQuery

I'm making an abacus with 10 beads in it. When a bead is clicked that bead and all the beads before it are arranged left in the abacus, and the remaining beads are moved to the right in the abacus. ...
0
votes
1answer
31 views

CSS formatting of unordered list to wrap around images?

Any ideas how I can better format this HTML unordered (or ordered) list to better wrap around this left-floated image? I keep coming across this fairly minor issue, but it does look bad on client's ...
0
votes
1answer
37 views

Is there any difference between “lower-latin” and “lower-alpha” values of “list-style-type” CSS property?

Both list-style-type: lower-latin and list-style-type: lower-alpha results in list like this: a. item1 b. item2 c. item3 ... Is there any difference between these two values, or they are exactly ...
0
votes
1answer
42 views

Border-collapse for lists?

Is there a border-collapse:collapse alternative for lists, where the li's are displayed as blocks with a border of 1px solid.
0
votes
1answer
30 views

jquery list show strange behaviour in chrome

I have made a page which has ol > li in which the li's are hidden using css. Now i am hsowing the li using jquery code $('ol#update li').show(); The page here at void Now this is showing right on ...
0
votes
2answers
42 views

css inline list needs width, height and vertical-alignment, for background-image swap on hover, using sprite

I have placed the corresponding code at http://cssdesk.com/QSwDG The sprite (referenced as 'circle.png' in the code) is at: http://i54.tinypic.com/34jas79.png Objectives: - To get the list items ...
0
votes
1answer
64 views

CSS Help: floating an image inside a list item hides icon

I have an image in a list item I need floated. Everything looks fine in FF/6+. Webkit and IE, however, show the list icon on top of the image. When I try floating the list item itself, the icon simply ...
0
votes
3answers
100 views

Styling List Buttons

Using a list, I want to create a list of links as in the image <div id="toolbarbottom" class="toolbar" style="position: fixed; clear: both; overflow: visible; bottom: 0px; left: 0px; width: ...
0
votes
3answers
71 views

Looking for a better way to remove white space for IE6

currently when I code a list I do this: <ul><!-- --><li><a href="" title="">something</a></li><!-- --><li><a href="" ...
0
votes
5answers
426 views

Can I use a div inside a list item?

Why is the following code correct when I am using a div inside an li?? <ul> <li><a href="#"><span>Home</span></a></li> <li ...
0
votes
1answer
625 views

Unable to refresh jQueryMobile lists using jQueryTemplate

I'm unable to refresh lists in jQueryMobile. $('ul').listview('refresh'); The code above generates the following error: uncaught exception: cannot call methods on listview prior to ...
0
votes
1answer
231 views

Target an empty <li>

I know this one must be a simple one for the jQuery gurus here, but I honestly have no idea how to accomplish it. I have the following HTML: <div class="panel_contents"> <ul> ...
0
votes
5answers
62 views

HTML lists within lists for different scenarios

Hey everyone, I'm currently deciding how to layout a store front. I'm very fond of using lists because semantically I am presenting the user with a list of items. However the details of each item I ...
0
votes
4answers
78 views

parameterize a jquery function

i m having a jquery animate function to animate a list which is specified using $li = $("ol#update > li"); the animate function function animate_li() { $li.filter(':first') ...
0
votes
1answer
220 views

Jquery sort sublists with classes

I have a php script that fetches the results into lists, but the list come out with the sublists in the bottom of the ul, this script isnt mine but im trying to sort the sublist into their right ...
0
votes
2answers
104 views

Why is my list-style-image being positioned differently in different browsers

On this page: http://run.xxmn.com/new/hot in Chrome and IE 7, the bullet image I’ve applied to the “Top Coupons” list with list-style-image is on the right hand side of each list item. In ...

1 2