View Single Post
Old 09-12-2023, 11:37 AM   #4
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,355
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
No, it would not effect ordered lists unless you applied it to the ordered list...not recommended since they are 'ordered' to get a symbol of some order-type.

to apply it to an ordered list you would add this to your css:

ol {list-style-type: none;}

although I would have something like:

ol {list-style-type: decimal;}


Have you linked the stylesheet to your html files?? It must be linked to apply the styles. You should see something like the following in your html headers:
Code:
<head>
  <title>Some Title</title>
  <link href="../Styles/styles.css" type="text/css" rel="stylesheet"/>
</head>
If you haven't linked it, then, using Sigil (Calibre is similar), just highlight all your html files and then right-click on one of them and select 'Link Stylesheets...' then select the css file you want to link.
Turtle91 is offline   Reply With Quote