How can I hide the small dots nearby each picture in IE7 ?
http://www.sanstitre.ch/drupal/portfolio?tid[0]=38
I've tried with text-decoration:none
and list-style-type:none
but it didn't work.
Thanks.
Did you put the list-style-type
in the ul
or li
?
It should be: (afaik)
ul{
list-style-type: none;
}
Other than that I used this before:
li{
background-image: url(); /*or link to a blank image*/
background-repeat: no-repeat;
background-position: left;
padding-left: 12px;
}
It's probably not the best way, but it gets the job done :)
Additionally try this too:
li.class, li.collapsed, li.expanded {
list-style-image: none;
list-style: none;
list-style-type: none;
}
ul {
list-style-image: none;
list-style: none;
list-style-type: none;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With