(Tribute Page) Text Alignment Issue

Hello Everyone,
I have been working on the Tribute Page project and I’m finishing up my page, but I’ve run into an issue with the UL element aligning to the center and the dots for the list sticking to the left. I originally was having an issue with my page because I had selected Bootstrap 4 instead of 3, but once I switched it to 3 everything was working except for the dots aligning.

My page is located here: https://codepen.io/jnichols35/full/LLBmre/

In addition, any feedback on my page would be great. :sunglasses:
-Jake

Hi! :slight_smile: this is more a workaround than a solution, but i think it can help you, add this to your css code:

ul {
    list-style: none;
}

li:before {
    content: "• ";
}
1 Like

Hey that works for me. Everything else I’ve tried has only broken the formatting more so I really appreciate it. :grinning:

1 Like