List that change points to squares
Hi,
How can I change the dots in squares in the lists on the website [Links visible only for registered users]
Thanks
Hi,
How can I change the dots in squares in the lists on the website [Links visible only for registered users]
Thanks
Comments
Hello,
You can change the dot to square with the inline CSS. Check the following link about it:
[Links visible only for registered users]
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:
ul{ list-style-type: square!important; }Thanks