문제

I have used ' Nic Edit ' in my rails project .

Bullet point ( ol and ul ) is not working .

I have checked nicEDIT.js.erb

it is there in button list .

Bold , Italic and others are working except this 'ol' and 'ul' .

도움이 되었습니까?

해결책

I have got the solution . That was a CSS problem . These two classes fixed the problem

.nicEdit-main ol{ list-style:inside; list-style-type: decimal; }
.nicEdit-main ul{ list-style: inside; list-style-type: circle; }

다른 팁

It's likely you have a css style that is changing these.

Check your css styles for any changes to ul/ol.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top