This what I found in the Catch Responsive Pro style.css
lines 391-404
ul {
list-style: none;
}
ol {
list-style: none;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
then lines 462-473
.entry-content ol > li {
list-style-type: decimal;
}
.entry-content ul > li {
list-style-type: square;
}
.entry-content ol ol,
.entry-content ul ul {
margin-bottom: 0;
}
I’ve changed the style nothing changed
In Tinymce advanced I’ve found notrhing about this in the CSS.
But In the wordpress themes like twentyeleven I’ve found this
/* Text elements */
p {
margin-bottom: 1.625em;
}
ul, ol {
margin: 0 0 1.625em 2.5em;
}
ul {
list-style: square;
}
ol {
list-style-type: decimal;
}
ol ol {
list-style: upper-alpha;
}
ol ol ol {
list-style: lower-roman;
}
ol ol ol ol {
list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
margin-bottom: 0;
}
Can you tell me how to append this Skandha
Thank You