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.
Asked
Active
Viewed 56 times
0
-
add to your css code : ul { list-style-type: none; } – Mohammad Fanni Jul 09 '17 at 11:29
-
Possible duplicate of [Need an unordered list without any bullets](https://stackoverflow.com/questions/1027354/need-an-unordered-list-without-any-bullets) – JiFus Jul 09 '17 at 15:51
1 Answers
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