Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
6k views

Best way to manage whitespace between inline list items

My HTML is as follows: <ul id="nav"> <li><a href="./">Home</a></li> <li><a href="/About">About</a></li> <li><a ...
9
votes
3answers
5k views

adjust list style image position

is there a way to adjust the position of list-style-image ? when i use padding for list items the image will stay at its position and wont move with padding...
2
votes
2answers
98 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
2answers
119 views

css html: what's the difference between upper-alpha and upper-latin in the css **list-style**?

I was wondering what's the difference between upper-alpha and upper-latin in the css list-style ?
2
votes
4answers
978 views

Use CSS to alternate ul bullet point styles

I would like to alternate list-style-type properties for ul lists, so that the outer is a disc, then one inner ul list is a circle, than one more inner is a disc, and so on. Essentially, what I want ...
2
votes
2answers
668 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 ...
1
vote
2answers
243 views

Toggle list-style-image via jQuery

How can i toggle the list-style-image via jQuery? I first tried to change the list-style-image, but that won't work. Does anybody know what i'm doing wrong here? [..] ...
1
vote
7answers
81 views

Remove li text while leaving list-style

I've got an unordered list with a list style using indented dots. I'd like to maintain those dots but remove the text from view. I originally guessed that I could simply set text-indent:-999px; but ...
1
vote
3answers
496 views

Different list style image for each li

I've got a problem with some ul and li... I'd like to create an unordered list with 3 li and each li has got a different list-style-image... I wrote this code but the image don't appear... Can you ...
1
vote
2answers
862 views

Why is my list-style-image not showing up?

I'm building out this landing page and after the second paragraph I have a list of points to which I have applied a list-style-image to the li.actionItem, however I'm getting the default disc instead ...
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
2answers
131 views

javascript getElementById for listStyle

I have no idea what I'm doing wrong but the bullets of the list wont change, please help. This is the html <div id="recetas_prepa"> <p class="recetas_preparacion">Preparación</p> ...
0
votes
2answers
302 views

CSS decimal list style type, the hanging number doesnt have the same baseline as my header text

CSS decimal list style type, the hanging number doesnt have the same baseline as my header text how can i line these up
0
votes
3answers
245 views

CSS list-style-image problem

I got a problem with CSS list-style-image tag my list image is some what large, and the text getting behind it is pushed down to the lower part of the style tag, is there a fix to bit it back in the ...
0
votes
3answers
557 views

“list-style-image” picture identation in Opera via CSS

Opera has unacceptable rendering of image-bullet positioning of list items. Look at demo page with Opera and different browser. Style: /* body {line-height:150%;} */ ul {list-style: none outside ...
0
votes
2answers
329 views

Hide list-style image for one specific list item

I am having an unordered list like: <ul style="list-style: square url(Images/rssIconSmall.png)"> <li><h3>All Items</h3></li> ...