On 2008-06-03, donpro <donpro-2003@rogers.comwrote:
Quote:
https://testbed.odysseyshipping.com/
>
In the footer, I am having problem with the list-style-image statement
in my CSS
>
1) In Firefox, my custom image shows in front og all list items EXCEPT
the first column
|
The images are there, they're just off the left of the page, because you
gave the ul zero left margin and padding.
Usually uls have 40px left margin (or left padding in some browsers)
from the default stylesheet, which leaves plenty of space for the
bullet.
The bullet is positioned off to the left of the li's block box, usually
about 8px off its port bow as it were. If the li is flush to the left of
the viewport as in your page, the bullet image ends up off-screen. You
would be able to scroll to it except browsers don't usually allow left
scrolling (long story).
Either make some space for it or use list-style-position: inside.
Quote:
2) In IE 7, they don;t sow any where
|
Can't help you there, I don't have IE.