0

Can you help me how can i delete this purple thing? I tried to add padding 0px; in css containers but it didn't work.

screen

Maciej Treder
  • 11,866
  • 5
  • 51
  • 74
vesterlay
  • 23
  • 1

1 Answers1

2

You can add via inline style,

<ul style="list-style-type: none;"> 

or via your css style sheet, this will remove the bullet from all ul

<style>
ul {
  list-style-type: none;
}
</style>

if you wish to affect only a specific list, you can add an id and hide it

<ul id="testul">

<style>
ul {
  list-style-type: none;
}
</style>

You can also add the following as well to remove indentation.

<style>
ul {
  padding: 0;
  margin: 0; 
}
</style>
licitdev
  • 319
  • 2
  • 9