Thank you Vaska for your reply. However, if my previous assumption is
right (inline style overrides an external style) why don't I get the bullets?
Via google I found this confirmation of my assumption:
http://www.w3schools.com/CSS/css_howto.asp
citation:
Generally speaking we can say that all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number four has the highest priority:
Browser default
External style sheet
Internal style sheet (in the head section)
Inline style (inside an HTML element)
So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style defined inside the tag, or in an external style sheet, or in a browser (a default value).
Note: If the link to the external style sheet is placed after the
internal style sheet in HTML , the external style sheet will
override the internal style sheet!
I don't understand the note at the end, however. Maybe that is the
key to solving my problem. I'll investigate further.