List that change points to squares
Hi,
How can I change the dots in squares in the lists on the website https://pixelway.de/projekt-hausarzt/herz-kreislauf/
Thanks
Hi,
How can I change the dots in squares in the lists on the website https://pixelway.de/projekt-hausarzt/herz-kreislauf/
Thanks
Comments
Hello,
You can change the dot to square with the inline CSS. Check the following link about it:
https://www.w3schools.com/html/tryit.asp?filename=tryhtml_lists_unordered_square
Thanks
Hello,
I put in the CSS:
.ul {
list-style-type: square;
}
entered, but it does not work.
Thanks
If you refer to an HTML tag in your custom CSS, you do not put a dot at the beginning because a dot is reserved for classes.
Also, you need to overwrite a style already assigned to the ul by using important.
So, your code should look like this:
Thanks