Hi all,
I'm working in a project imported from RoboHelp.
I used the following CSS to increase the space between <ol> number and the text:
Code: Select all
li::before
{
content: "";
width: 20px;
display: inline-block;
}
But the display: inline-block; causes <ul> items that have an embedded <p> to put the text on a separate line:
UL_paragraph_issue.png
If I delete the unused <p> from <ul> items then they display correctly and are not negatively affected by the display: inline-block;
so wondering if there's a way to bulk remove <p> tags from <ul> items?
Thanks very much
You do not have the required permissions to view the files attached to this post.