Is anyone aware of a simpler solution to this problem, particularly now that there are newer releases of Flare since these posts of 2012?
I'm finding this solution a bit awkward as our company is using an unconventional Chapter.Page numbering system and was hoping that I could suppress the page ...
Search found 3 matches
- Wed Aug 12, 2015 11:28 am
- Forum: Printed Documentation Targets
- Topic: "Chapter Break" topics are always on a new page
- Replies: 10
- Views: 7671
- Mon Jun 15, 2015 10:19 am
- Forum: Styles, Stylesheets and XML
- Topic: Removing Periods from ol | li
- Replies: 7
- Views: 5926
Re: Removing Periods from ol | li
I think I just solved it with the following:
ol {
counter-reset: item;
list-style-type: none;
}
ul li {
list-style-type: default;
}
ol li:before {
content: counter(item) " ";
counter-increment: item
}
Seems to work.
ol {
counter-reset: item;
list-style-type: none;
}
ul li {
list-style-type: default;
}
ol li:before {
content: counter(item) " ";
counter-increment: item
}
Seems to work.
- Mon Jun 15, 2015 8:13 am
- Forum: Styles, Stylesheets and XML
- Topic: Removing Periods from ol | li
- Replies: 7
- Views: 5926
Re: Removing Periods from ol | li
Not sure if this one was resolved, but since it's an old post, thought I would ask once again if there is a simple fix for this issue with Flare 10 or higher.
Issue: "Our current documentation contains li ordered lists, which have a period after each number. To match our new corporate standard, the ...
Issue: "Our current documentation contains li ordered lists, which have a period after each number. To match our new corporate standard, the ...