I am currently working on integrating a chat snippet into an angular project. The challenge I am facing is that I cannot use jquery components, so I only need the HTML and CSS parts. You can find the original snippet here:
After copying it to Codepen, I noticed there were bullets on the left side of each user in the chat list. To remedy this, I added list-style-type:none;
However, simply removing the bullet points did not solve the issue, as there was still extra margin space left behind instead of the bullets. You can view my modified example here: https://codepen.io/artyombaykov/pen/pxGyjY I made adjustments in the following section to remove the bullet points:
#frame #sidepanel #contacts ul li.contact {
position: relative;
padding: 10px 0 15px 0;
font-size: 0.9em;
cursor: pointer;
list-style-type:none;
}
How can I eliminate the additional left side margin that appeared due to the presence of bullet points?