I need to hide ellipsis element (so basically three dots ...) that starts every text in paragraph.
So e.g. text goes like '...some text' so how do I trim the ... at the beginning and it shows only 'some text'?
Looking for CSS or JS solution.
There's not much of a code, just simple HTML:
<p>... Some text rendered by some PHP CMS</p>
so what I want is that it would hide all starting ellipsis:
<p>Some text rendered by some PHP CMS</p>
It's not duplicate, I here ask for how to hide the ellipsis, not add it. It doesn't have to be ellipsis, I need somehow hide the three characters starting the paragraph which in this case are '...'.