Ordered List <Ol> Html Tags Dont Work On Any Html Content Pages

Hi All - this may seem minor, but its a real issue with me because I have so many content pages of my own HTML. One thing great about CS Cart if you want to create pages you can just paste any HTML (div, table, whatever) into a content page and it all works great. But one very weird thing, the ordered lists tag

    does not work.



    Because I have so many HTML content pages with tons of bulleted lists I need the ordered (numbered) bullets to work.



    I have messed with adding css to mystyles.css and messed with the reset.css file with no luck.



    Has anyone got any ideas?



    Thanks,



    Jacson

Its possible that

    has been set to have no decoration for formatting in one of the css files, probably; base.css See if you can find it there.

Assuming “mystyles.css” you mention refers to the my_changes method of adding extra CSS, you'll find

    has no CSS list-style-type declaration in any of the CSS files (although it does have only a padding attribute in base.css). so try this in mystyles.css:-


    ol > li {
    list-style-type: decimal-leading-zero;
    }

Thank you for the replies! You're correct! Here is the solution from CS Cart:



Please let me note that standard CS-Cart has list-style-type: none set up for the li element, that is why it appears that way. In order to change it, open the design/themes/basic/css/base.css file of your CS-Cart installation and change this part of code:


li { margin: 0; padding: 2px 0; text-align: left; text-indent: 0; list-style-type: none;}





to this:


li { margin: 0; padding: 2px 0; text-align: left; text-indent: 0; /*list-style-type: none;*/}

Tested Stellarbytes method too, that works, I like it better because then I don't mess with base.css, and its all neatly in mystyles.css, which, yes, is part of my_changes method. One last thing, a nested bullet does not change its size or shape, its the same as typical bullet although it indents. I would prefer that the nested bullet, or “bullet of a bullet” be the smaller or outlined “dot”, but I am VERY happy to have solved this one!





Thank You!

Thanks, was looking for this.

We can get bullets and so forth to work fine in the “Description” field, but not in short description or other tabs,e tc. Will the above fix this?



Jack