I'm new to CSS, and I'm looking for a way to use the stylesheet to apply the following formats to autonumbers (prepended digits) in declared ordered lists: * bolding the digits (while other text is normal) * removing the periods
Possible? Perhaps not. Here's a bolding solution I received from the HATT yahoo group (http://tech.groups.yahoo.com/group/HATT/), which requires you to make each list item paragraph a P element nested within the LI element: ol li { font-weight: bold; } ol li p { font-weight: normal; } I'm looking for a solution I can implement from the stylesheet, without requiring a code change within the individual list item paragraphs. For context, I'm using CSS in Madcap Flare to mimic print styles originated in Adobe FrameMaker. The output I want to create right now is a PDF. We plan to maintain the content in Flare to facilitate output-independent reuse. Thanks, Pamela Pamela Denchfield Sr. Technical Writer, Onyx [EMAIL PROTECTED] ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
