Skip to content

Commit

Permalink
Use the right CSS property in FAQ css (fixes #1886)
Browse files Browse the repository at this point in the history
'outside' is a list-style-position, not a list-style-type.  This seems
to result in certain versions of certain browsers displaying unordered
lists as though they were ordered lists, which is less than ideal.
  • Loading branch information
Pixie committed May 20, 2017
1 parent 9cd0cf7 commit 77ce2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/stc/faq.css
@@ -1,5 +1,5 @@
#faq ul, #faq ol {
margin-left: 3em;
margin-bottom: 2em;
list-style-type: outside;
list-style-position: outside;
}

0 comments on commit 77ce2d9

Please sign in to comment.