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...
|
Not really. The padding that you're applying is (likely) being applied to the list item, so will only affect the actual content within the list item. You might also be looking to add styling to the parent container (ul) to position your bulleted list items. It'd help if you posted some sample code. This A List Apart article has a good starting reference. However, if you're interested, and depending on the effect you're looking for, you can try and use a combination of background and padding styles to do something that looks similar. e.g.
|
|||
|
|
|
I normally hide the list-style-type and use a background image, which is moveable
The "7px 7px" is what aligns the background image inside the element and is also relative to the padding. |
|||
|
|
|
Here's what I did to get small grey blocks to be on the left side and in the center of the text with an increased lineheight:
Hope this helps someone :D |
|||
|
|
|
I think what you really want to do is add the padding (you are currently adding to the <li>) to the <ul> tag and then the bullet points will move with the text of the <li>. There is also the list-style-position you could look into. It affects how the lines wrap around the bullet images. |
|||
|
|
|
like "a darren" answer but minor modification
it works cross browser, just adjust the padding and margin |
|||
|
|
|
I had the same problem, but i could not use the background option (and didn't want to use multiple backgrounds) so i thought of another solution this is an example for a menu that has a square like indicator for the active/current menu item (the default list style is set to none in another rule)
it creates a square by using a square character with the ":before" pseudo class and it is freely positionable by using absolute positioning. |
|||
|
|
|
Another option you can do, is the following:
Use (0 3px) to position the list image. Works in IE8+, Chrome, Firefox, and Opera. I use this option because you can swap out list-style easily and a good chance you may not even have to use an image at all. (fiddle below) |
|||
|
|