for instance in my css section I will go
ul {
text-align: center;
}
and the list will move but the bullets will stay to the left hand side
Hi!
You can use list-style-position: inside to move the dots with the text.
ul {
text-align: center;
list-style-position: inside;
}
try it !
1 Like
Thank you that appeared to work!!!
1 Like