When I try to center a the text in the centers but the bullet points stay on the far left of the page. Is there any way to ge
You can do that with list-style-position: inside; on the ul element :
list-style-position: inside;
ul
ul { list-style-position: inside; }
See working fiddle