vesterlay
vesterlay

Reputation: 23

Remove list bullets from <ul>

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

Upvotes: 0

Views: 66

Answers (1)

licitdev
licitdev

Reputation: 319

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>

Upvotes: 2

Related Questions