Ben,
margin attribute is not working with li::marker. Actually that was my problem from the beginning. After searching on Google, I found and used this workaround which is fine for me.
.sidebar .widget_block > ul {
list-style: '> ' inside;
}
For some reason the below code produced too much space in front of the bullet.
.sidebar .widget_block > ul {
list-style: square inside;
}
Thank for your time and effort. Keep up with the good work.
Vas.
-
This reply was modified 3 years, 6 months ago by vgargan.