Since the HTML is hosted on another server and I have no control over it, how can I use CSS to style certain list items?
For example,
The HTML on the server side:
<ol>
<li>Coffee</li>
<li>Milk</li>
<li>Orange Juice</li>
<li>Chocolate Milk</li>
<li>Espresso with hot foamy milk</li>
<li>Espresso diluted with hot water</li>
</ol>
I would like to use CSS to change the display of the last two items to "Cappuccino" and "Americano".
Thank you.