Skip to main content
Participating Frequently
August 8, 2022
Question

well, I select the div <ol> go to format list properties and hit enter..... nothing comes up to edit

  • August 8, 2022
  • 4 replies
  • 293 views

Title says it all.

using DW CS6 fluid grid. but I copy pasted 90 pages of a wordpress site to be formated. the thing is it is already numbered and lettered.

So I make ol of it all and now I want to edit the list properties, as I do not like 1.1.1.1.1.1.1.1.1 etc I prefer a.1.i etc

how to edit the list properties in dw cs6, as the normal way does not work: select <ol> format list properties.
is there an update to that removes this bug?

    This topic has been closed for replies.

    4 replies

    Legend
    August 9, 2022
    quote


    using DW CS6 fluid grid. but I copy pasted 90 pages of a wordpress site to be formated. the thing is it is already numbered and lettered.

     

    I've been saying web-devlopment these days is bordering on insanity....this sort of proves my point.

    Nancy OShea
    Community Expert
    Community Expert
    August 9, 2022

    In this case, I may agree with you. 

    FluidGrids + WordPress =

     

    Nancy O'Shea— Product User & Community Expert
    Nancy OShea
    Community Expert
    Community Expert
    August 9, 2022
    quoteI prefer a.1.i

    ==========

    CSS code:

    ol li {list-style-type:lower-alpha;}
    ol li li {list-style-type: decimal;}
    ol li li li {list-style-type:lower-roman}

     

    Nancy O'Shea— Product User & Community Expert
    Nancy OShea
    Community Expert
    Community Expert
    August 9, 2022
    Nancy O'Shea— Product User & Community Expert
    Nancy OShea
    Community Expert
    Community Expert
    August 9, 2022
    quote

    using DW CS6 fluid grid. But I copy pasted 90 pages of a wordpress site to be formated.


    By @Partij Voor D25364323sh71

    ============

    This is ugly on so many levels.  Here's why:

    1. CS6 is 10 years out of date (obsolete software), discontinued & unsupported.

    2. Fluid Grids were a bad idea 10 years ago.  Since then Adobe abandoned FluidGrids and replaced it with Bootstrap.

    3. What are you hoping to gain from pasting WordPress (a dynamic PHP/MySQL site) into static HTML?

     

    Text is styled with CSS, not HTML.  See example below.

     

    <!doctype html>
    <html lang="eng">
    <head>
    <meta charset="utf-8">
    <title>Ordered List</title>
    
    <style>
    ol li li {list-style-type: upper-alpha;
    }
    ol li li li {list-style-type:decimal}
    
    </style>
    </head>
    <body>
    <ol>
      <li>List Item</li>
      <li>List Item</li>
      <li>List Item
        <ol>
          <li>List Item</li>
          <li>List Item
            <ol>
              <li>List Item</li>
              <li>List Item</li>
              <li>List Item</li>
            </ol>
          </li>
          <li>List Item</li>
        </ol>
      </li>
      <li>List Item</li>
      <li>List Item
        <ol>
          <li>List Item</li>
          <li>List Item</li>
          <li>List Item</li>
        </ol>
      </li>
      <li>List Item</li>
      <li>List Item</li>
    </ol>
    </body>
    </html>
    
    
    

     

    Hope that helps.

     

    Nancy O'Shea— Product User & Community Expert
    Participating Frequently
    August 10, 2022

    The thing is, I just made it with fluidgride template. it comes with a css file and boilerplate css and js files

    there already is a css list area as following:

    ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
    dd { margin: 0 0 0 0px; }
    nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

    if I understand you correctly I should swap that out for the code:
    ol li {list-style-type:lower-alpha;}
    ol li li {list-style-type: decimal;}
    ol li li li {list-style-type:lower-roman}
    and actually if we have upto 7 layers, is there a cheat sheet to know all available list styles?

    thanks for the info.

    greets,

    Roy

    Participating Frequently
    August 10, 2022

    To quickly touch back. unordered list works for me. no panic. 🙂