Impossible to remove list bullet points

Hi all,

this is my first post!!! WOOO!

i have issue with lists and bullet points.

the bullet points will not go away!!

if i enable the bullet points i get 2 bullet points. (the bullet point + the impossible to remove bullet)

i want NO BULLET POINTS!!

can anyone help?

Can you add a link to your code?

have you tried adding list-style: none?

for example:

 ul {
    list-style: none;
}

ok I checked and you have this:

    color: #000;
    content: "\ď„…" /*rtl:"\ď„„"*/;
    font-family: fontawesome;
    left: 0;
    position: absolute;
    top: 0;

You have to remove the content: "\" /*rtl:"\"*/; on your li's. Or override them with content: none. How and where to place them, I’m not too sure.

1 Like

yes yes yes that was it!!

this content: “\” /rtl:"\"/;

damn that was hurting my head

tahnk you sooooooo much!!!

1 Like

How did you see gandhi’s code? The link I saw in the original post says “[Vanilla Recruitment]” and a link to a job post.
Could you please explain? Just curious! thx

You can right-click on the page and click inspect. You’ll open the browser’s DevTools and find the code there. For more info I recommend that you read/watch guides about keywords like Developer Tools, Debugging, or Inspect Element. Best of Luck!

1 Like

Hi there ,
You can use the tag:
ul style=“list-style-type:none”
reply must if it works:)