Mobi unordered list style
Hi,
I'm trying to change the style of UL
So for instance on the epub css I have:
div[title=Agradecimientos] > ul{
list-style-type: none;
}
div[title=Agradecimientos] > li{
display: block;
}
However when I convert it to mobi the style is not applied. I read a thread saying that ebook-convert ignores list-style-type
I tried using:
ebook-convert de-aqui-pal-real.epub de-aqui-pal-real.mobi --extra-css de-aqui-pal-real-ebook-convert-extra.css
Where de-aqui-pal-real-ebook-convert-extra.css
li {
display: block;
}
ul {
list-style-type: none;
}
But on the kindle the list shows the round bullets. Any ideas how to change the style?
|