kovidgoyal:
Is there at least some way to remove the padding, margin, and bullet points from a "<ul>" tag? Right now, I have this:
Code:
extra_css = (
"""
#foo ul {
padding-left: 0px;
margin-left: 0px;
list-style-type: none;
}
"""
)
By the time it gets on the kindle, it looks like these CSS rules get stripped out. Is there some workaround to just get this working?
Thanks for your help.