I've never used css before so I am trying to work the example given at
I'm having trouble replacing the bullets by images. It catches the mktree class but seems to ignore anything with .bullet
This line works fine, i can set bullet styles/images in it if i want.
These however, seem to be ignored.
I followed the directions from the example. I probably can get it to work with some tinkering but im still curious as to what went wrong?
I'm having trouble replacing the bullets by images. It catches the mktree class but seems to ignore anything with .bullet
This line works fine, i can set bullet styles/images in it if i want.
Code:
ul.mktree li { list-style: none; }
These however, seem to be ignored.
Code:
ul.mktree li .bullet { padding-left: 15px;}
ul.mktree li.liOpen .bullet { cursor: pointer; background: url(minus.gif) center left no-repeat; }
I followed the directions from the example. I probably can get it to work with some tinkering but im still curious as to what went wrong?