View Single Post
Old 09-14-2017, 01:01 PM   #5
simplisity
Junior Member
simplisity began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jun 2017
Device: Kindle
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.
simplisity is offline   Reply With Quote