Forum LAMS for Tech-Heads - General Forum: Re: Text editor - Insert/Remove Numbered List does not work


 
Search: 

2: Re: Text editor - Insert/Remove Numbered List does not work
In response to 1 04/10/08 07:36 PM
[ Reply | Forward ]
This is a bit of an odd one. The button was adding the appropriate <ol><li></li></ol> to the html source, but it wasn't showing up right on the screen.

Anyway, I've made a change to our stylesheets and it seems to fix the problem. The fix will be in LAMS 2.1.

If you can't wait till then, then have a look in lams_central/css/ and find defaultHTML_learner.css and defaultHTML.css. Change this bit




ul {
    margin-left: 25px;
    margin-right: 30px;
}

li {
    list-style-type: circle;
    padding-bottom: 5px;
}




to





ul {
    margin-right: 25px;
    margin-left: 30px;
}

ul li { list-style-type:circle;}

ol {
    margin-right: 25px;
    margin-left: 30px;
}




Then it should work. You should make a backup copy of those two files before you edit them (just in case something goes wrong).

Fiona

Posted by Fiona Malikoff

5: Re: Re: Text editor - Insert/Remove Numbered List does not work
In response to 2 04/16/08 05:15 PM
[ Reply | Forward ]
Dear Fiona,

We've made your suggestions and Text editor - Insert/Remove Numbered List is working now!!

Thanks a lot,

Spyros

Posted by Spyros Papadakis

Reply to first post on this page
Back to LAMS for Tech-Heads - General Forum