RH2019.0.7 - Can't format or apply UL and OL lists as expected
Not sure where I'm going wrong here.
Recently upgraded RH 2017 projects to the new 2019. The 2017 project had css with OL, UL, and LI styles set up. Example CSS is below.
This has copied over to my new 2019 project OK in the CSS. But when applying these styles it is not applying the CSS in the same way in 2019 and as such my styles are not formatted. I've tried to create new styles in RH2019 but there is a li-rad_normal style being applied which just does not exist in my style sheet. But I can't understand why this is being applied at all.
Any ideas?
2017 CSS and 2019 CSS for respective styles. Both exactly the same.
OL {
margin-top: 0px;
margin-bottom: 0px;
}
UL {
margin-top: 0px;
margin-bottom: 0px;
}
li.Number {
font-family: Calibri;
font-size: 11pt;
list-style: decimal;
line-height: Normal;
margin-bottom: 6px;
margin-top: 6px;
}
p.Rad_Normal {
margin-bottom: 0pt;
line-height: Normal;
text-align: justify;
}
li.Bullet {
list-style: disc;
font-family: Calibri;
font-size: 11pt;
}
Example HTML from 2017 project where all I applied was li.Number style to an existing paragraph that has p.Rad_Normal applied.
<ol style="list-style: decimal;">
<li class="Number"><p class="Rad_Normal">Pick Rate updates allow you to change the pick rate...
Example HTML from 2019 project where I Try to do the same thing:
<ol>
<li class="Rad_Normal">and the invoice date is printed on the actual.
As you see in 2019 I am not getting the LI 'Number class being applied, and instead Rad_Normal is being set as an LI class and no P class to actually format my text.
