Reputation: 23
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.
Upvotes: 0
Views: 66
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