Hi there!
Happy New Year!
Here’s a CSS code that you could use to move the ordered list numbers inside the content area aligned with the rest of the content:
ol {
list-style-position: inside;
padding-left: 0;
}
If you need it for the bullets/unordered lists too, use this one instead:
ol, ul {
list-style-position: inside;
padding-left: 0;
}
Let me know if I can help you further.
Hiya Karla.
Thanks very much for your response.
CSS for both lists now installed on both of my sites, and working perfectly,
Warm wishes from the west of England.
Jack
Hello again Karla.
You kindly provided the following CSS to remove outdenting of numbered and bulleted lists:
ol { list-style-position: inside; padding-left: 0;}
ol, ul { list-style-position: inside; padding-left: 0;}
Small problem: The hanging functionality is now missing.
Is there any way of resolving this, or is it simply a tradeoff?
Thanks. Jack