Changes between Initial Version and Version 1 of Ticket #6331
- Timestamp:
- Sep 21, 2010, 12:13:13 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6331
- Property Keywords styles wrap class ul removed
-
Property
Component
changed from
General
toCore : Styles
-
Ticket #6331 – Description
initial v1 1 1 paste this in the editor : 2 {{{ 2 3 <ul> 3 4 <li> … … 8 9 line 3</li> 9 10 </ul> 10 11 }}} 11 12 12 13 then apply a style (from the Styles list) to the UL. … … 14 15 15 16 On my site, applying a style ({ name : 'Slider content' , element : 'div',attributes : { 'class' : 'slider_content' }}) to the UL gives this : 17 {{{ 16 18 <ul> 17 19 <li> … … 22 24 <div class="myClass">line 3</div></li> 23 25 </ul> 24 26 }}} 25 27 instead of : 28 {{{ 26 29 <div class="myClass"> 27 30 <ul> … … 34 37 </ul> 35 38 </div> 36 39 }}} 37 40 hoping I am not mistaking on this issue...